blob: bf6c86790d7d993fa52cdc8b435763dba573f304 (
plain)
1
2
3
4
5
6
7
8
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
|