aboutsummaryrefslogtreecommitdiff
path: root/include/window_texture.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-09-25 17:29:17 +0200
committerdec05eba <dec05eba@protonmail.com>2022-09-25 17:29:17 +0200
commit497217a3e09b577f650aaf503356588515067ca8 (patch)
tree2fd43b747957510c55d66caf81df30732c39c398 /include/window_texture.h
parent663a36df4aaea583e7cd56ad35b26d05f6151746 (diff)
widgets
Diffstat (limited to 'include/window_texture.h')
-rw-r--r--include/window_texture.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/include/window_texture.h b/include/window_texture.h
deleted file mode 100644
index ea3ff10..0000000
--- a/include/window_texture.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#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 */