diff options
author | Simon Ser <contact@emersion.fr> | 2021-02-16 19:01:33 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-02-23 16:09:26 +0100 |
commit | 5d6d76c61fa6403260eacb10f0b99ff2ab919b3a (patch) | |
tree | 0a68405f7bd34819e3c1c7956b78621c31bd1d80 /include/render/shm_format.h | |
parent | bfd020047dbe3d3f1a3734d4fe48f04847a46603 (diff) |
render/shm_format: add wl_shm_format conversion helpers
Diffstat (limited to 'include/render/shm_format.h')
-rw-r--r-- | include/render/shm_format.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/render/shm_format.h b/include/render/shm_format.h new file mode 100644 index 00000000..bf6c8679 --- /dev/null +++ b/include/render/shm_format.h @@ -0,0 +1,9 @@ +#ifndef RENDER_SHM_FORMAT_H +#define RENDER_SHM_FORMAT_H + +#include <wayland-server-protocol.h> + +uint32_t convert_wl_shm_format_to_drm(enum wl_shm_format fmt); +enum wl_shm_format convert_drm_format_to_wl_shm(uint32_t fmt); + +#endif |