diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-01-11 10:50:14 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-01-11 10:50:14 +0100 |
commit | 94cbed9471ee2263aac6ff8b10a27cd38964eb67 (patch) | |
tree | 75e4d5db6d7e873f8c5deccb769dd505ebcc52ae /src/egl.c | |
parent | 4c098a4f0397876110a950d99e9951c360fedca8 (diff) |
Nvidia: use default p4 preset instead of p5, might fix frame issues
Diffstat (limited to 'src/egl.c')
-rw-r--r-- | src/egl.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -363,6 +363,8 @@ static bool gsr_egl_load_gl(gsr_egl *self, void *library) { dlsym_assign required_dlsym[] = { { (void**)&self->glGetError, "glGetError" }, { (void**)&self->glGetString, "glGetString" }, + { (void**)&self->glFlush, "glFlush" }, + { (void**)&self->glFinish, "glFinish" }, { (void**)&self->glClear, "glClear" }, { (void**)&self->glClearColor, "glClearColor" }, { (void**)&self->glGenTextures, "glGenTextures" }, |