mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +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
					
				@ -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 New Issue
	
	Block a user