aboutsummaryrefslogtreecommitdiff
path: root/include/render.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-08 15:52:42 -0400
committerDrew DeVault <sir@cmpwn.com>2017-06-08 15:52:42 -0400
commitcd6a40d81679c37795e9d24354a8bbbf84cd53a6 (patch)
tree82186fb0985a16ed76928b0226ff2eed9bb2c261 /include/render.h
parent83f8864f0ab1722aae12cc744094a7424c41f2d8 (diff)
Further improvements to rendering subsystem
Diffstat (limited to 'include/render.h')
-rw-r--r--include/render.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/render.h b/include/render.h
deleted file mode 100644
index 0f977eb0..00000000
--- a/include/render.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef _WLR_RENDER_INTERNAL_H
-#define _WLR_RENDER_INTERNAL_H
-#include <stdint.h>
-#include <wlr/render.h>
-#include <wayland-util.h>
-#include <GLES3/gl3.h>
-#include <stdbool.h>
-
-struct wlr_surface {
- bool valid;
- GLuint tex_id;
- uint32_t format;
- int width, height;
-};
-
-struct wlr_shader {
- bool valid;
- uint32_t format;
- GLuint vert;
- GLuint program;
- struct wlr_shader *next;
-};
-
-struct wlr_renderer {
- struct wlr_shader *shader;
- // TODO: EGL stuff
-};
-
-#endif