aboutsummaryrefslogtreecommitdiff
path: root/render/vulkan/pixel_format.c
diff options
context:
space:
mode:
authorManuel Stoeckl <code@mstoeckl.com>2023-10-21 21:40:11 -0400
committerSimon Ser <contact@emersion.fr>2023-12-04 15:13:31 +0000
commit566c413d8ff70f075a7481035605ec710d610f45 (patch)
tree767203407057960cc266f491fbb0a25e9ff6b409 /render/vulkan/pixel_format.c
parent88a4b9eefd5b3f97dcf4da406b9f5dc17988a639 (diff)
render/vulkan: constify vulkan_format_props_find_modifier
Diffstat (limited to 'render/vulkan/pixel_format.c')
-rw-r--r--render/vulkan/pixel_format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/vulkan/pixel_format.c b/render/vulkan/pixel_format.c
index 3dd9c4d3..0568c023 100644
--- a/render/vulkan/pixel_format.c
+++ b/render/vulkan/pixel_format.c
@@ -569,7 +569,7 @@ void vulkan_format_props_finish(struct wlr_vk_format_props *props) {
}
const struct wlr_vk_format_modifier_props *vulkan_format_props_find_modifier(
- struct wlr_vk_format_props *props, uint64_t mod, bool render) {
+ const struct wlr_vk_format_props *props, uint64_t mod, bool render) {
uint32_t len;
const struct wlr_vk_format_modifier_props *mods;
if (render) {