diff options
Diffstat (limited to 'include/render.h')
-rw-r--r-- | include/render.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/render.h b/include/render.h index fd1ea024..0f977eb0 100644 --- a/include/render.h +++ b/include/render.h @@ -6,7 +6,8 @@ #include <GLES3/gl3.h> #include <stdbool.h> -struct wlr_texture { +struct wlr_surface { + bool valid; GLuint tex_id; uint32_t format; int width, height; @@ -17,7 +18,7 @@ struct wlr_shader { uint32_t format; GLuint vert; GLuint program; - struct wl_list link; + struct wlr_shader *next; }; struct wlr_renderer { |