Searched refs:height_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):
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 Dvk_format_table.py145 print(" %u,\t/* height_divisor */" % (format.height_divisor))
H A Dvk_format.h144 unsigned height_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.c1045 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 Dradv_device.c4403 unsigned height = iview->extent.height / (iview->plane_id ? format_desc->height_divisor : 1);

Completed in 16 milliseconds