diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-09-27 03:03:09 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-09-27 03:03:09 +0200 |
commit | ebc8c69bacb7c8aa7fd1ccebddc281760a11b88e (patch) | |
tree | f1d6b3d0e364a41c405d185a7cd0176453e3bf3c /include/egl.h | |
parent | 412cf0dbae0705ca91a16ec92dadf129eaa9424e (diff) |
Add vulkan video encoding option (-k h264_vulkan). WIP, not fully hardware accelerated yet
Diffstat (limited to 'include/egl.h')
-rw-r--r-- | include/egl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/egl.h b/include/egl.h index 3fdbf48..82014b9 100644 --- a/include/egl.h +++ b/include/egl.h @@ -313,6 +313,9 @@ struct gsr_egl { void (*glUniform2f)(int location, float v0, float v1); void (*glDebugMessageCallback)(GLDEBUGPROC callback, const void *userParam); void (*glScissor)(int x, int y, int width, int height); + void (*glReadPixels)(int x, int y, int width, int height, unsigned int format, unsigned int type, void *pixels); + void* (*glMapBuffer)(unsigned int target, unsigned int access); + unsigned char (*glUnmapBuffer)(unsigned int target); }; bool gsr_egl_load(gsr_egl *self, Display *dpy, bool wayland, bool is_monitor_capture); |