Searched refs:width_divisor (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
H A Dvk_format_parse.py116 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 Dvk_format_table.py144 print(" %u,\t/* width_divisor */" % (format.width_divisor))
H A Dvk_format.h143 unsigned width_divisor:2; member in struct:vk_format_description
H A Dradv_nir_lower_ycbcr_textures.c206 const unsigned divisors[2] = {fmt_desc->width_divisor, fmt_desc->height_divisor};
H A Dradv_image.c1044 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 Dradv_device.c4402 unsigned width = iview->extent.width / (iview->plane_id ? format_desc->width_divisor : 1);

Completed in 16 milliseconds