Lines Matching defs:height
57 /* Textures with a very small height are recommended to be linear. */
61 (pCreateInfo->extent.width > 8 && pCreateInfo->extent.height <= 2))
129 if (image->info.samples <= 1 && image->info.width * image->info.height <= 512 * 512) {
365 if (image->info.width * image->info.height < 8 * 8 &&
456 unsigned height = image->info.height;
471 height = G_00A008_HEIGHT(md->metadata[4]) + 1;
474 height = G_008F18_HEIGHT(md->metadata[4]) + 1;
478 if (image->info.width == width && image->info.height == height)
481 if (width < image->info.width || height < image->info.height) {
487 image->info.width, image->info.height, width, height);
495 image->info.width, image->info.height, width, height);
503 image->info.width, image->info.height, width, height);
506 image_info->height = height;
958 unsigned width, unsigned height, unsigned depth, float min_lod,
993 height = 1;
1005 state[2] = S_00A008_WIDTH_HI((width - 1) >> 2) | S_00A008_HEIGHT(height - 1) |
1085 fmask_state[2] = S_00A008_WIDTH_HI((width - 1) >> 2) | S_00A008_HEIGHT(height - 1) |
1118 unsigned width, unsigned height, unsigned depth, float min_lod,
1173 height = 1;
1185 state[2] = (S_008F18_WIDTH(width - 1) | S_008F18_HEIGHT(height - 1) | S_008F18_PERF_MOD(4));
1283 fmask_state[2] = S_008F18_WIDTH(width - 1) | S_008F18_HEIGHT(height - 1);
1332 unsigned width, unsigned height, unsigned depth, float min_lod, uint32_t *state,
1337 first_level, last_level, first_layer, last_layer, width, height,
1341 first_level, last_level, first_layer, last_layer, width, height,
1357 image->info.array_size - 1, image->info.width, image->info.height,
1659 info.height = vk_format_get_plane_height(image->vk.format, plane, info.height);
1760 "width=%" PRIu32 ", height=%" PRIu32 ", "
1762 image->size, image->alignment, image->info.width, image->info.height,
1839 radv_assert(pCreateInfo->extent.height > 0);
1850 image->info.height = pCreateInfo->extent.height;
1966 vk_format_get_plane_height(image->vk.format, plane_id, iview->extent.height),
2128 .height = image->info.height,
2142 iview->extent.height = round_up_u32(iview->extent.height * view_bh, img_bh);
2159 * Fix this by calculating the base mip's width and height, then convert
2177 iview->extent.height = iview->image->planes[0].surface.u.gfx9.base_mip_height;
2180 unsigned lvl_height = radv_minify(image->info.height, range->baseMipLevel);
2190 iview->extent.height = CLAMP(lvl_height, iview->extent.height,