small update + added test lines

This commit is contained in:
Will McKinnon 2022-06-09 17:44:49 -04:00
parent ed98da84bb
commit 6ec9622ac6
4 changed files with 936 additions and 896 deletions

View file

@ -14,7 +14,9 @@ struct gles2_tex_shader {
struct gles2_renderer {
struct wlr_egl *egl;
float projection[9];
uint32_t viewport_width;
uint32_t viewport_height;
@ -32,4 +34,6 @@ struct gles2_renderer {
} shaders;
};
struct gles2_renderer *gles2_renderer_create(struct wlr_egl *egl);
#endif