mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
kms-winsys: Mark the framebuffer to be bound when setting a new layout
We need to bind the context to the new EGL surface we just created. https://bugzilla.gnome.org/show_bug.cgi?id=741881
This commit is contained in:
parent
665c1d0faf
commit
c36e31401d
@ -1177,6 +1177,7 @@ cogl_kms_display_set_layout (CoglDisplay *display,
|
||||
height != kms_display->height) &&
|
||||
kms_display->onscreen)
|
||||
{
|
||||
CoglContext *context = COGL_FRAMEBUFFER (kms_display->onscreen)->context;
|
||||
CoglOnscreenEGL *egl_onscreen = kms_display->onscreen->winsys;
|
||||
CoglOnscreenKMS *kms_onscreen = egl_onscreen->platform;
|
||||
struct gbm_surface *new_surface;
|
||||
@ -1219,6 +1220,7 @@ cogl_kms_display_set_layout (CoglDisplay *display,
|
||||
egl_onscreen->egl_surface = new_egl_surface;
|
||||
|
||||
_cogl_framebuffer_winsys_update_size (COGL_FRAMEBUFFER (kms_display->onscreen), width, height);
|
||||
context->current_draw_buffer_changes |= COGL_FRAMEBUFFER_STATE_BIND;
|
||||
}
|
||||
|
||||
kms_display->width = width;
|
||||
|
Loading…
Reference in New Issue
Block a user