Avoid calling buffer binding when shader didn't change
This commit is contained in:
parent
5fe0bc584b
commit
7362d22195
1 changed files with 4 additions and 1 deletions
|
@ -257,7 +257,10 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
|||
|
||||
GL.UseProgram(Handle);
|
||||
|
||||
BindUniformBuffers(Handle);
|
||||
if (CurrentProgramHandle != Handle)
|
||||
{
|
||||
BindUniformBuffers(Handle);
|
||||
}
|
||||
|
||||
CurrentProgramHandle = Handle;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue