diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-30 03:36:39 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-30 03:36:39 +0200 |
commit | c679b2fdb6a8172df4e29b1fb12b54d1891665de (patch) | |
tree | 7f49ffb957e84d264e9cd59d569a2d3d437c6d11 /include | |
parent | b8a521a785e1c40ef247e6536f284afd9e39922a (diff) |
Use sampler2D for alpha blending compute shader instead of output image2D
Diffstat (limited to 'include')
-rw-r--r-- | include/egl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/egl.h b/include/egl.h index 643ab30..f7b0cc1 100644 --- a/include/egl.h +++ b/include/egl.h @@ -139,6 +139,8 @@ typedef void(*__GLXextFuncPtr)(void); #define GL_WRITE_ONLY 0x88B9 #define GL_READ_WRITE 0x88BA #define GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS 0x90EB +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 #define GL_VENDOR 0x1F00 #define GL_RENDERER 0x1F01 @@ -236,6 +238,7 @@ struct gsr_egl { void (*glClearColor)(float red, float green, float blue, float alpha); void (*glGenTextures)(int n, unsigned int *textures); void (*glDeleteTextures)(int n, const unsigned int *texture); + void (*glActiveTexture)(unsigned int texture); void (*glBindTexture)(unsigned int target, unsigned int texture); void (*glBindImageTexture)(unsigned int unit, unsigned int texture, int level, unsigned char layered, int layer, unsigned int access, unsigned int format); void (*glTexParameteri)(unsigned int target, unsigned int pname, int param); @@ -285,6 +288,7 @@ struct gsr_egl { int (*glGetUniformLocation)(unsigned int program, const char *name); void (*glUniform1f)(int location, float v0); void (*glUniform2f)(int location, float v0, float v1); + void (*glUniform1i)(int location, int v0); void (*glUniform2i)(int location, int v0, int v1); void (*glUniformMatrix2fv)(int location, int count, unsigned char transpose, const float *value); void (*glDebugMessageCallback)(GLDEBUGPROC callback, const void *userParam); |