render/vulkan: drop "_format" in wlr_vk_format fields

"format" is already in the name, no need to repeat ourselves.
`format->vk_format` sounds a bit redundant.
This commit is contained in:
Simon Ser 2022-11-29 09:26:55 +01:00
parent c8eb24d30e
commit 8b9a48c984
4 changed files with 32 additions and 36 deletions

View file

@ -79,8 +79,8 @@ int vulkan_find_mem_type(struct wlr_vk_device *device,
VkMemoryPropertyFlags flags, uint32_t req_bits);
struct wlr_vk_format {
uint32_t drm_format;
VkFormat vk_format;
uint32_t drm;
VkFormat vk;
bool is_srgb;
};