Searched refs:width_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): 128 self.width_divisor = width_divisor 402 width_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 | 144 print(" %u,\t/* width_divisor */" % (format.width_divisor))
|
| H A D | vk_format.h | 143 unsigned width_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 | 1044 assert(info.width % desc->width_divisor == 0); 1047 info.width /= desc->width_divisor; 1150 iview->extent.width / (plane_id ? format_desc->width_divisor : 1),
|
| H A D | radv_device.c | 4402 unsigned width = iview->extent.width / (iview->plane_id ? format_desc->width_divisor : 1);
|
Completed in 16 milliseconds