• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:gfx9

144 			return info->bo_metadata->u.gfx9.scanout;  in radv_surface_has_scanout()
326 if (md->u.gfx9.swizzle_mode > 0) in radv_patch_surface_from_metadata()
331 surface->u.gfx9.surf.swizzle_mode = md->u.gfx9.swizzle_mode; in radv_patch_surface_from_metadata()
642 va += plane->surface.u.gfx9.stencil_offset; in si_set_mutable_tex_desc_fields()
644 va += plane->surface.u.gfx9.surf_offset; in si_set_mutable_tex_desc_fields()
682 state[3] |= S_00A00C_SW_MODE(plane->surface.u.gfx9.stencil.swizzle_mode); in si_set_mutable_tex_desc_fields()
684 state[3] |= S_00A00C_SW_MODE(plane->surface.u.gfx9.surf.swizzle_mode); in si_set_mutable_tex_desc_fields()
697 meta = plane->surface.u.gfx9.dcc; in si_set_mutable_tex_desc_fields()
709 state[3] |= S_008F1C_SW_MODE(plane->surface.u.gfx9.stencil.swizzle_mode); in si_set_mutable_tex_desc_fields()
710 state[4] |= S_008F20_PITCH(plane->surface.u.gfx9.stencil.epitch); in si_set_mutable_tex_desc_fields()
712 state[3] |= S_008F1C_SW_MODE(plane->surface.u.gfx9.surf.swizzle_mode); in si_set_mutable_tex_desc_fields()
713 state[4] |= S_008F20_PITCH(plane->surface.u.gfx9.surf.epitch); in si_set_mutable_tex_desc_fields()
726 meta = plane->surface.u.gfx9.dcc; in si_set_mutable_tex_desc_fields()
745 unsigned nr_layers, unsigned nr_samples, bool is_storage_image, bool gfx9) in radv_tex_dim() argument
751 if (gfx9 && image_type == VK_IMAGE_TYPE_1D) in radv_tex_dim()
919 S_00A00C_SW_MODE(image->planes[0].surface.u.gfx9.fmask.swizzle_mode) | in gfx10_make_texture_descriptor()
1106 fmask_state[3] |= S_008F1C_SW_MODE(image->planes[0].surface.u.gfx9.fmask.swizzle_mode); in si_make_texture_descriptor()
1108 S_008F20_PITCH(image->planes[0].surface.u.gfx9.fmask.epitch); in si_make_texture_descriptor()
1230 metadata->u.gfx9.swizzle_mode = surface->u.gfx9.surf.swizzle_mode; in radv_init_metadata()
1231 metadata->u.gfx9.scanout = (surface->flags & RADEON_SURF_SCANOUT) != 0; in radv_init_metadata()
1707 iview->extent.width = iview->image->planes[0].surface.u.gfx9.base_mip_width; in radv_image_view_init()
1708 iview->extent.height = iview->image->planes[0].surface.u.gfx9.base_mip_height; in radv_image_view_init()
1720 iview->image->planes[0].surface.u.gfx9.base_mip_width); in radv_image_view_init()
1722 iview->image->planes[0].surface.u.gfx9.base_mip_height); in radv_image_view_init()
1868 uint64_t level_offset = surface->is_linear ? surface->u.gfx9.offset[level] : 0; in radv_GetImageSubresourceLayout()
1870 pLayout->offset = plane->offset + level_offset + surface->u.gfx9.surf_slice_size * layer; in radv_GetImageSubresourceLayout()
1878 pLayout->rowPitch = surface->u.gfx9.surf_pitch * surface->bpe / 3; in radv_GetImageSubresourceLayout()
1880 uint32_t pitch = surface->is_linear ? surface->u.gfx9.pitch[level] : surface->u.gfx9.surf_pitch; in radv_GetImageSubresourceLayout()
1886 pLayout->arrayPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1887 pLayout->depthPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1888 pLayout->size = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()