Lines Matching defs:format
40 vk_format_get_first_non_void_channel(VkFormat format)
42 return util_format_get_first_non_void_channel(vk_format_to_pipe_format(format));
77 vk_format_is_subsampled(VkFormat format)
79 return util_format_is_subsampled_422(vk_format_to_pipe_format(format));
83 vk_format_no_srgb(VkFormat format)
85 switch (format) {
117 assert(!vk_format_is_srgb(format));
118 return format;
123 vk_to_non_srgb_format(VkFormat format)
125 switch (format) {
141 return format;
146 vk_format_get_plane_width(VkFormat format, unsigned plane, unsigned width)
148 return util_format_get_plane_width(vk_format_to_pipe_format(format), plane, width);
152 vk_format_get_plane_height(VkFormat format, unsigned plane, unsigned height)
154 return util_format_get_plane_height(vk_format_to_pipe_format(format), plane, height);