Use the dummy pbuffer we create to make current

This commit is contained in:
Cooper Yuan
2012-04-30 14:16:46 -04:00
committed by Kristian Høgsberg
parent 5f5f31939d
commit 4577adce8c
+2 -2
View File
@@ -174,8 +174,8 @@ x11_compositor_init_egl(struct x11_compositor *c)
return -1; return -1;
} }
if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE, if (!eglMakeCurrent(c->base.display, c->dummy_pbuffer,
EGL_NO_SURFACE, c->base.context)) { c->dummy_pbuffer, c->base.context)) {
fprintf(stderr, "failed to make context current\n"); fprintf(stderr, "failed to make context current\n");
return -1; return -1;
} }