gears: Make window transparent

We need this for the window decorations.
This commit is contained in:
Kristian Høgsberg 2012-01-19 14:05:21 -05:00
parent 824c6d0e38
commit 5f5324e098
1 changed files with 2 additions and 2 deletions

View File

@ -315,7 +315,7 @@ gears_create(struct display *display)
gears->d = display;
gears->window = window_create(display, width, height);
gears->widget = frame_create(gears->window, gears);
window_set_transparent(gears->window, 0);
window_set_transparent(gears->window, 1);
window_set_title(gears->window, "Wayland Gears");
gears->display = display_get_egl_display(gears->d);
@ -324,7 +324,7 @@ gears_create(struct display *display)
eglBindAPI(EGL_OPENGL_API);
gears->config = display_get_rgb_egl_config(gears->d);
gears->config = display_get_argb_egl_config(gears->d);
gears->context = eglCreateContext(gears->display, gears->config,
EGL_NO_CONTEXT, NULL);