diff options
author | Derek Foreman <derekf@osg.samsung.com> | 2017-08-10 11:36:38 -0500 |
---|---|---|
committer | Derek Foreman <derekf@osg.samsung.com> | 2017-08-10 11:36:38 -0500 |
commit | 49bdba8505232371db4609c0ad963ecb0896f275 (patch) | |
tree | 13aba85f4de097adc8db6dea65fdeb91b854701f /src/lib/efl_wl/efl_wl.c | |
parent | 9738a6e3d2eb81655978a675a2ad764196ce7929 (diff) |
efl_wl: Update to latest dmabuf protocol version
Weston's dmabuf code continues to be modular enough that we can pull
it in with little change.
This updates us to version 3 of the protocol.
Currently only contains stubs for format queries.
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl_wl/efl_wl.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/efl_wl/efl_wl.c b/src/lib/efl_wl/efl_wl.c index 9a02d0a4e3..069e4ed0c2 100644 --- a/src/lib/efl_wl/efl_wl.c +++ b/src/lib/efl_wl/efl_wl.c | |||
@@ -5262,6 +5262,18 @@ comp_dmabuf_test(struct linux_dmabuf_buffer *dmabuf) | |||
5262 | return EINA_TRUE; | 5262 | return EINA_TRUE; |
5263 | } | 5263 | } |
5264 | 5264 | ||
5265 | void | ||
5266 | comp_dmabuf_formats_query(void *compositor EINA_UNUSED, int **formats EINA_UNUSED, int *num_formats) | ||
5267 | { | ||
5268 | *num_formats = 0; | ||
5269 | } | ||
5270 | |||
5271 | void | ||
5272 | comp_dmabuf_modifiers_query(void *compositor EINA_UNUSED, int format EINA_UNUSED, uint64_t **modifiers EINA_UNUSED, int *num_modifiers) | ||
5273 | { | ||
5274 | *num_modifiers = 0; | ||
5275 | } | ||
5276 | |||
5265 | Evas_Object * | 5277 | Evas_Object * |
5266 | efl_wl_add(Evas *e) | 5278 | efl_wl_add(Evas *e) |
5267 | { | 5279 | { |