mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-17 08:56:28 -05:00
Make sure we don't use others' prefixes
This commit is contained in:
parent
f9f75a1362
commit
71ca45e2c0
33 changed files with 207 additions and 203 deletions
|
|
@ -59,12 +59,12 @@ union wlr_drm_plane_props {
|
|||
uint32_t props[12];
|
||||
};
|
||||
|
||||
bool drm_get_connector_props(int fd, uint32_t id,
|
||||
bool get_drm_connector_props(int fd, uint32_t id,
|
||||
union wlr_drm_connector_props *out);
|
||||
bool drm_get_crtc_props(int fd, uint32_t id, union wlr_drm_crtc_props *out);
|
||||
bool drm_get_plane_props(int fd, uint32_t id, union wlr_drm_plane_props *out);
|
||||
bool get_drm_crtc_props(int fd, uint32_t id, union wlr_drm_crtc_props *out);
|
||||
bool get_drm_plane_props(int fd, uint32_t id, union wlr_drm_plane_props *out);
|
||||
|
||||
bool drm_get_prop(int fd, uint32_t obj, uint32_t prop, uint64_t *ret);
|
||||
void *drm_get_prop_blob(int fd, uint32_t obj, uint32_t prop, size_t *ret_len);
|
||||
bool get_drm_prop(int fd, uint32_t obj, uint32_t prop, uint64_t *ret);
|
||||
void *get_drm_prop_blob(int fd, uint32_t obj, uint32_t prop, size_t *ret_len);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue