wayland_shm: Fix dmabuf orientation

So apparently when dmabuf support went into weston it went in with a
Y axis inversion that has since been corrected.

This updates our code to match.
This commit is contained in:
Derek Foreman 2016-08-19 14:51:55 -05:00
parent 552db73ac4
commit 20f9acdf19
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ _evas_dmabuf_buffer_init(Dmabuf_Surface *s, int w, int h)
Dmabuf_Buffer *out;
struct zwp_linux_buffer_params_v1 *dp;
Buffer_Manager *bm = _buffer_manager_get();
uint32_t flags = ZWP_LINUX_BUFFER_PARAMS_V1_FLAGS_Y_INVERT;
uint32_t flags = 0;
if (!bm) return NULL;