evas-wayland-egl: Rename Evas_GL_Wl_Window to Outbuf

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-08-04 16:01:45 -04:00
parent 59294c7381
commit 7cf7ca213b
3 changed files with 17 additions and 17 deletions

View File

@ -32,7 +32,7 @@ struct _Render_Engine
Tilebuf_Rect *rects_prev[3]; Tilebuf_Rect *rects_prev[3];
Eina_Inlist *cur_rect; Eina_Inlist *cur_rect;
Evas_GL_Wl_Window *win; Outbuf *win;
Evas_Engine_Info_Wayland_Egl *info; Evas_Engine_Info_Wayland_Egl *info;
Evas *evas; Evas *evas;

View File

@ -47,9 +47,9 @@ extern int _evas_engine_wl_egl_log_dom;
# endif # endif
# define CRI(...) EINA_LOG_DOM_CRIT(_evas_engine_wl_egl_log_dom, __VA_ARGS__) # define CRI(...) EINA_LOG_DOM_CRIT(_evas_engine_wl_egl_log_dom, __VA_ARGS__)
typedef struct _Evas_GL_Wl_Window Evas_GL_Wl_Window; typedef struct _Outbuf Outbuf;
struct _Evas_GL_Wl_Window struct _Outbuf
{ {
struct wl_display *disp; struct wl_display *disp;
struct wl_egl_window *win; struct wl_egl_window *win;
@ -74,11 +74,11 @@ struct _Evas_GL_Wl_Window
Eina_Bool surf : 1; Eina_Bool surf : 1;
}; };
Evas_GL_Wl_Window *eng_window_new(struct wl_display *disp, struct wl_surface *surface, int screen, int depth, int w, int h, int indirect, int alpha, int rot); Outbuf *eng_window_new(struct wl_display *disp, struct wl_surface *surface, int screen, int depth, int w, int h, int indirect, int alpha, int rot);
void eng_window_free(Evas_GL_Wl_Window *gw); void eng_window_free(Outbuf *gw);
void eng_window_use(Evas_GL_Wl_Window *gw); void eng_window_use(Outbuf *gw);
void eng_window_unsurf(Evas_GL_Wl_Window *gw); void eng_window_unsurf(Outbuf *gw);
void eng_window_resurf(Evas_GL_Wl_Window *gw); void eng_window_resurf(Outbuf *gw);
Eina_Bool eng_window_make_current(void *data, void *doit); Eina_Bool eng_window_make_current(void *data, void *doit);
#endif #endif

View File

@ -3,14 +3,14 @@
/* local function prototypes */ /* local function prototypes */
/* local variables */ /* local variables */
static Evas_GL_Wl_Window *_evas_gl_wl_window = NULL; static Outbuf *_evas_gl_wl_window = NULL;
static EGLContext context = EGL_NO_CONTEXT; static EGLContext context = EGL_NO_CONTEXT;
static int win_count = 0; static int win_count = 0;
Evas_GL_Wl_Window * Outbuf *
eng_window_new(struct wl_display *display, struct wl_surface *surface, int screen, int depth, int w, int h, int indirect EINA_UNUSED, int alpha, int rot) eng_window_new(struct wl_display *display, struct wl_surface *surface, int screen, int depth, int w, int h, int indirect EINA_UNUSED, int alpha, int rot)
{ {
Evas_GL_Wl_Window *gw; Outbuf *gw;
int context_attrs[3]; int context_attrs[3];
int config_attrs[40]; int config_attrs[40];
int major_version, minor_version; int major_version, minor_version;
@ -19,7 +19,7 @@ eng_window_new(struct wl_display *display, struct wl_surface *surface, int scree
Eina_Bool blacklist = EINA_FALSE; Eina_Bool blacklist = EINA_FALSE;
/* try to allocate space for our window */ /* try to allocate space for our window */
if (!(gw = calloc(1, sizeof(Evas_GL_Wl_Window)))) if (!(gw = calloc(1, sizeof(Outbuf))))
return NULL; return NULL;
win_count++; win_count++;
@ -182,7 +182,7 @@ eng_window_new(struct wl_display *display, struct wl_surface *surface, int scree
} }
void void
eng_window_free(Evas_GL_Wl_Window *gw) eng_window_free(Outbuf *gw)
{ {
int ref = 0; int ref = 0;
@ -220,7 +220,7 @@ eng_window_free(Evas_GL_Wl_Window *gw)
} }
void void
eng_window_use(Evas_GL_Wl_Window *gw) eng_window_use(Outbuf *gw)
{ {
Eina_Bool force = EINA_FALSE; Eina_Bool force = EINA_FALSE;
@ -258,7 +258,7 @@ eng_window_use(Evas_GL_Wl_Window *gw)
} }
void void
eng_window_unsurf(Evas_GL_Wl_Window *gw) eng_window_unsurf(Outbuf *gw)
{ {
if (!gw->surf) return; if (!gw->surf) return;
if (!getenv("EVAS_GL_WIN_RESURF")) return; if (!getenv("EVAS_GL_WIN_RESURF")) return;
@ -281,7 +281,7 @@ eng_window_unsurf(Evas_GL_Wl_Window *gw)
} }
void void
eng_window_resurf(Evas_GL_Wl_Window *gw) eng_window_resurf(Outbuf *gw)
{ {
if (gw->surf) return; if (gw->surf) return;
if (getenv("EVAS_GL_INFO")) printf("resurf %p\n", gw); if (getenv("EVAS_GL_INFO")) printf("resurf %p\n", gw);
@ -307,7 +307,7 @@ eng_window_resurf(Evas_GL_Wl_Window *gw)
Eina_Bool Eina_Bool
eng_window_make_current(void *data, void *doit) eng_window_make_current(void *data, void *doit)
{ {
Evas_GL_Wl_Window *gw; Outbuf *gw;
if (!(gw = data)) return EINA_FALSE; if (!(gw = data)) return EINA_FALSE;