You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
445 B
29 lines
445 B
8 years ago
|
#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_texture {
|
||
|
GLuint tex_id;
|
||
|
uint32_t format;
|
||
|
int width, height;
|
||
|
};
|
||
|
|
||
|
struct wlr_shader {
|
||
|
bool valid;
|
||
|
uint32_t format;
|
||
|
GLuint vert;
|
||
|
GLuint program;
|
||
|
struct wl_list link;
|
||
|
};
|
||
|
|
||
|
struct wlr_renderer {
|
||
|
struct wlr_shader *shader;
|
||
|
// TODO: EGL stuff
|
||
|
};
|
||
|
|
||
|
#endif
|