mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 13:10:00 +00:00
gl_rasterizer: Call state.Apply only once on SetupShaders.
This commit is contained in:
parent
fbaefc47a0
commit
820f646458
1 changed files with 2 additions and 4 deletions
|
@ -237,6 +237,8 @@ void RasterizerOpenGL::SetupShaders() {
|
|||
}
|
||||
}
|
||||
|
||||
state.Apply();
|
||||
|
||||
shader_program_manager->UseTrivialGeometryShader();
|
||||
}
|
||||
|
||||
|
@ -666,8 +668,6 @@ u32 RasterizerOpenGL::SetupConstBuffers(Maxwell::ShaderStage stage, Shader& shad
|
|||
current_bindpoint + bindpoint);
|
||||
}
|
||||
|
||||
state.Apply();
|
||||
|
||||
return current_bindpoint + static_cast<u32>(entries.size());
|
||||
}
|
||||
|
||||
|
@ -714,8 +714,6 @@ u32 RasterizerOpenGL::SetupTextures(Maxwell::ShaderStage stage, Shader& shader,
|
|||
}
|
||||
}
|
||||
|
||||
state.Apply();
|
||||
|
||||
return current_unit + static_cast<u32>(entries.size());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue