diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-06-04 23:55:47 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-06-04 23:55:47 +0200 |
commit | 7f658e81ab32ea2474e1fce3759b5050a8e79738 (patch) | |
tree | 18c6b871c944fa33896ee0dff9afe32e7f4ce075 /include | |
parent | 9acb60a4c4709f0e4f8a6aeb3956a5d6bfeb277f (diff) |
Fix freeze on target window resize
Diffstat (limited to 'include')
-rw-r--r-- | include/window_texture.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/window_texture.h b/include/window_texture.h new file mode 100644 index 0000000..80e4d66 --- /dev/null +++ b/include/window_texture.h @@ -0,0 +1,30 @@ +#ifndef WINDOW_TEXTURE_H +#define WINDOW_TEXTURE_H + +#define GLX_GLXEXT_PROTOTYPES +#include <GL/glew.h> +#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; +} WindowTexture; + +/* Returns 0 on success */ +int window_texture_init(WindowTexture *window_texture, Display *display, Window window); +void window_texture_deinit(WindowTexture *self); + +/* + This should 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); + +#endif /* WINDOW_TEXTURE_H */ |