diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-03-30 18:09:17 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-03-30 18:09:17 +0200 |
commit | a66516e34ed1037cdc38fce8bd957fd77152c39f (patch) | |
tree | 9e6d50c544b24f070c89034bc14d4c8e3554887e /include | |
parent | 889efe51b26d505171d132097ac77a14ade5a101 (diff) |
wip
Diffstat (limited to 'include')
-rw-r--r-- | include/window_texture.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/window_texture.h b/include/window_texture.h new file mode 100644 index 0000000..ea3ff10 --- /dev/null +++ b/include/window_texture.h @@ -0,0 +1,38 @@ +#ifndef WINDOW_TEXTURE_H +#define WINDOW_TEXTURE_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define GLX_GLXEXT_PROTOTYPES +#include <GL/glx.h> +#include <GL/glxext.h> +#include <X11/Xlib.h> + +typedef struct { + Display *display; + Window window; + Pixmap pixmap; + GLXPixmap glx_pixmap; + GLuint texture_id; + int redirected; +} WindowTexture; + +/* Returns 0 on success */ +int window_texture_init(WindowTexture *window_texture, Display *display, Window window); +void window_texture_deinit(WindowTexture *self); + +/* + This should ONLY be called when the target window is resized. + Returns 0 on success. +*/ +int window_texture_on_resize(WindowTexture *self); + +GLuint window_texture_get_opengl_texture_id(WindowTexture *self); + +#ifdef __cplusplus +} +#endif + +#endif /* WINDOW_TEXTURE_H */ |