mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 08:59:59 +00:00
gl_shader_manager: Make ProgramManager's GetCurrentProgramStage() a const member function
This function doesn't modify class state, so it can be made const.
This commit is contained in:
parent
c1d54f4aea
commit
555d76d065
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ public:
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
GLuint GetCurrentProgramStage(Maxwell3D::Regs::ShaderStage stage) {
|
GLuint GetCurrentProgramStage(Maxwell3D::Regs::ShaderStage stage) const {
|
||||||
switch (stage) {
|
switch (stage) {
|
||||||
case Maxwell3D::Regs::ShaderStage::Vertex:
|
case Maxwell3D::Regs::ShaderStage::Vertex:
|
||||||
return current.vs;
|
return current.vs;
|
||||||
|
|
Loading…
Reference in a new issue