From 3e2e2444d9fa65ae404604542689cf7829c99cfa Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 14 Jun 2024 02:05:54 +0200 Subject: Properly cut out cursor outside video area when dealing with hevc amd padding --- src/egl.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/egl.c') diff --git a/src/egl.c b/src/egl.c index 2c139e6..48234ac 100644 --- a/src/egl.c +++ b/src/egl.c @@ -452,11 +452,13 @@ static bool gsr_egl_load_gl(gsr_egl *self, void *library) { { (void**)&self->glEnableVertexAttribArray, "glEnableVertexAttribArray" }, { (void**)&self->glDrawArrays, "glDrawArrays" }, { (void**)&self->glEnable, "glEnable" }, + { (void**)&self->glDisable, "glDisable" }, { (void**)&self->glBlendFunc, "glBlendFunc" }, { (void**)&self->glGetUniformLocation, "glGetUniformLocation" }, { (void**)&self->glUniform1f, "glUniform1f" }, { (void**)&self->glUniform2f, "glUniform2f" }, { (void**)&self->glDebugMessageCallback, "glDebugMessageCallback" }, + { (void**)&self->glScissor, "glScissor" }, { NULL, NULL } }; -- cgit v1.2.3