early-access version 2877

This commit is contained in:
pineappleEA
2022-07-30 19:55:25 +02:00
vanhempi 8e26e63d7c
commit 7b69f77b50
2 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa

Näytä tiedosto

@@ -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

Näytä tiedosto

@@ -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;
}