early-access version 2877
This commit is contained in:
parent
8e26e63d7c
commit
7b69f77b50
2 changed files with 3 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 2876.
|
||||
This is the source code for early-access 2877.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@ static OGLProgram LinkSeparableProgram(GLuint shader) {
|
|||
glProgramParameteri(program.handle, GL_PROGRAM_SEPARABLE, GL_TRUE);
|
||||
glAttachShader(program.handle, shader);
|
||||
glLinkProgram(program.handle);
|
||||
glDetachShader(program.handle, shader);
|
||||
glDeleteShader(shader);
|
||||
if (!Settings::values.renderer_debug) {
|
||||
return program;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue