aboutsummaryrefslogtreecommitdiff
path: root/include/render
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2023-05-10 16:00:22 -0400
committerSimon Ser <contact@emersion.fr>2023-05-11 18:24:43 +0200
commit340700cb7085aff743f929845604ef95feb5820e (patch)
tree609306998e1fca465f33fb956228d730770f2efc /include/render
parent099a147439b5b20d466316ae3dc8215f30ff3c1c (diff)
wlr_drm_format: Change wlr_drm_format_dup to copy
Diffstat (limited to 'include/render')
-rw-r--r--include/render/drm_format_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/render/drm_format_set.h b/include/render/drm_format_set.h
index 8734ea7a..1ffc2a90 100644
--- a/include/render/drm_format_set.h
+++ b/include/render/drm_format_set.h
@@ -6,7 +6,7 @@
void wlr_drm_format_init(struct wlr_drm_format *fmt, uint32_t format);
bool wlr_drm_format_has(const struct wlr_drm_format *fmt, uint64_t modifier);
bool wlr_drm_format_add(struct wlr_drm_format *fmt, uint64_t modifier);
-struct wlr_drm_format *wlr_drm_format_dup(const struct wlr_drm_format *format);
+bool wlr_drm_format_copy(struct wlr_drm_format *dst, const struct wlr_drm_format *src);
/**
* Intersect modifiers for two DRM formats.
*