mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
VideoCommon: store the configuration used to create the AbstractPipeline on the pipeline itself, so that it's easy to duplicate pipelines with slightly altered configuration
This commit is contained in:
parent
aaad0cd39f
commit
d0c6b6c9ed
12 changed files with 45 additions and 38 deletions
|
@ -15,7 +15,7 @@ namespace OGL
|
|||
class OGLPipeline final : public AbstractPipeline
|
||||
{
|
||||
public:
|
||||
explicit OGLPipeline(const GLVertexFormat* vertex_format,
|
||||
explicit OGLPipeline(const AbstractPipelineConfig& config, const GLVertexFormat* vertex_format,
|
||||
const RasterizationState& rasterization_state, const DepthState& depth_state,
|
||||
const BlendingState& blending_state, PipelineProgram* program,
|
||||
GLenum gl_primitive);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue