Fixed setting the right DSP service on deserialization
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user