diff options
Diffstat (limited to 'include/egl.h')
-rw-r--r-- | include/egl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/egl.h b/include/egl.h index b8513fd..4705742 100644 --- a/include/egl.h +++ b/include/egl.h @@ -119,6 +119,7 @@ typedef struct { void *output; vec2i pos; vec2i size; + int32_t transform; char *name; } gsr_wayland_output; @@ -215,6 +216,7 @@ typedef struct { void (*glBlendFunc)(unsigned int sfactor, unsigned int dfactor); int (*glGetUniformLocation)(unsigned int program, const char *name); void (*glUniform1f)(int location, float v0); + void (*glUniform2f)(int location, float v0, float v1); } gsr_egl; bool gsr_egl_load(gsr_egl *self, Display *dpy, bool wayland); |