Fixed setting the right DSP service on deserialization
This commit is contained in:
parent
2217b3558d
commit
b2370ea353
3 changed files with 15 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <boost/serialization/export.hpp>
|
||||
#include "video_core/shader/shader.h"
|
||||
|
||||
namespace Pica {
|
||||
|
@ -12,6 +13,9 @@ namespace Pica {
|
|||
struct State;
|
||||
|
||||
class GeometryPipelineBackend;
|
||||
class GeometryPipeline_Point;
|
||||
class GeometryPipeline_VariablePrimitive;
|
||||
class GeometryPipeline_FixedPrimitive;
|
||||
|
||||
/// A pipeline receiving from vertex shader and sending to geometry shader and primitive assembler
|
||||
class GeometryPipeline {
|
||||
|
@ -52,3 +56,7 @@ private:
|
|||
friend class boost::serialization::access;
|
||||
};
|
||||
} // namespace Pica
|
||||
|
||||
BOOST_CLASS_EXPORT_KEY(Pica::GeometryPipeline_Point)
|
||||
BOOST_CLASS_EXPORT_KEY(Pica::GeometryPipeline_VariablePrimitive)
|
||||
BOOST_CLASS_EXPORT_KEY(Pica::GeometryPipeline_FixedPrimitive)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue