diff options
-rw-r--r-- | src/egl/drivers/dri2/egl_dri2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.h b/src/egl/drivers/dri2/egl_dri2.h index 99617a6a9e4..1e128d02691 100644 --- a/src/egl/drivers/dri2/egl_dri2.h +++ b/src/egl/drivers/dri2/egl_dri2.h @@ -279,6 +279,9 @@ struct dri2_egl_surface __DRIbuffer buffers[5]; bool have_fake_front; + /* EGL-owned buffers */ + __DRIbuffer *local_buffers[__DRI_BUFFER_COUNT]; + #ifdef HAVE_X11_PLATFORM xcb_drawable_t drawable; xcb_xfixes_region_t region; @@ -312,9 +315,6 @@ struct dri2_egl_surface __DRIimage *dri_image_back; __DRIimage *dri_image_front; - /* EGL-owned buffers */ - __DRIbuffer *local_buffers[__DRI_BUFFER_COUNT]; - /* Used to record all the tbm_surface created by tpl_surface and their ages. * Usually Tizen uses at most triple buffers in tpl_surface (tbm_surface_queue) * so hardcode the number of color_buffers to 3. |