mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-25 03:28:26 -05:00
early-access version 2877
This commit is contained in:
parent
8e26e63d7c
commit
7b69f77b50
@ -1,7 +1,7 @@
|
|||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 2876.
|
This is the source code for early-access 2877.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
@ -17,6 +17,8 @@ static OGLProgram LinkSeparableProgram(GLuint shader) {
|
|||||||
glProgramParameteri(program.handle, GL_PROGRAM_SEPARABLE, GL_TRUE);
|
glProgramParameteri(program.handle, GL_PROGRAM_SEPARABLE, GL_TRUE);
|
||||||
glAttachShader(program.handle, shader);
|
glAttachShader(program.handle, shader);
|
||||||
glLinkProgram(program.handle);
|
glLinkProgram(program.handle);
|
||||||
|
glDetachShader(program.handle, shader);
|
||||||
|
glDeleteShader(shader);
|
||||||
if (!Settings::values.renderer_debug) {
|
if (!Settings::values.renderer_debug) {
|
||||||
return program;
|
return program;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user