From c679b2fdb6a8172df4e29b1fb12b54d1891665de Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 30 Mar 2025 03:36:39 +0200 Subject: Use sampler2D for alpha blending compute shader instead of output image2D --- 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 1138ae7..946399c 100644 --- a/src/egl.c +++ b/src/egl.c @@ -283,6 +283,7 @@ static bool gsr_egl_load_gl(gsr_egl *self, void *library) { { (void**)&self->glClearColor, "glClearColor" }, { (void**)&self->glGenTextures, "glGenTextures" }, { (void**)&self->glDeleteTextures, "glDeleteTextures" }, + { (void**)&self->glActiveTexture, "glActiveTexture" }, { (void**)&self->glBindTexture, "glBindTexture" }, { (void**)&self->glBindImageTexture, "glBindImageTexture" }, { (void**)&self->glTexParameteri, "glTexParameteri" }, @@ -332,6 +333,7 @@ static bool gsr_egl_load_gl(gsr_egl *self, void *library) { { (void**)&self->glGetUniformLocation, "glGetUniformLocation" }, { (void**)&self->glUniform1f, "glUniform1f" }, { (void**)&self->glUniform2f, "glUniform2f" }, + { (void**)&self->glUniform1i, "glUniform1i" }, { (void**)&self->glUniform2i, "glUniform2i" }, { (void**)&self->glUniformMatrix2fv, "glUniformMatrix2fv" }, { (void**)&self->glDebugMessageCallback, "glDebugMessageCallback" }, -- cgit v1.2.3-70-g09d2