Searched refs:height_divisor (Results 1 - 6 of 6) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | vk_format_parse.py | 116 def __init__(self, name, layout, block_width, block_height, le_channels, le_swizzles, be_channels, be_swizzles, colorspace, width_divisor, height_divisor, plane_formats): 129 self.height_divisor = height_divisor 403 height_divisor = 1 407 (width_divisor, height_divisor) = parse_plane_divisor(fields[10]) 413 format = Format(name, layout, block_width, block_height, le_channels, le_swizzles, be_channels, be_swizzles, colorspace, width_divisor, height_divisor, plane_formats)
|
| H A D | vk_format_table.py | 145 print(" %u,\t/* height_divisor */" % (format.height_divisor))
|
| H A D | vk_format.h | 144 unsigned height_divisor:2; member in struct:vk_format_description
|
| H A D | radv_nir_lower_ycbcr_textures.c | 206 const unsigned divisors[2] = {fmt_desc->width_divisor, fmt_desc->height_divisor};
|
| H A D | radv_image.c | 1045 assert(info.height % desc->height_divisor == 0); 1048 info.height /= desc->height_divisor; 1151 iview->extent.height / (plane_id ? format_desc->height_divisor : 1),
|
| H A D | radv_device.c | 4403 unsigned height = iview->extent.height / (iview->plane_id ? format_desc->height_divisor : 1);
|
Completed in 16 milliseconds