mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
i965/blorp: Get rid of brw_blorp_surface_info::array_layout
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
parent
09879eff30
commit
3c25caa318
2 changed files with 0 additions and 10 deletions
|
|
@ -69,7 +69,6 @@ brw_blorp_surface_info_init(struct brw_context *brw,
|
|||
intel_miptree_get_image_offset(mt, level, layer,
|
||||
&info->x_offset, &info->y_offset);
|
||||
|
||||
info->array_layout = mt->array_layout;
|
||||
info->swizzle = SWIZZLE_XYZW;
|
||||
|
||||
if (format == MESA_FORMAT_NONE)
|
||||
|
|
|
|||
|
|
@ -118,15 +118,6 @@ struct brw_blorp_surface_info
|
|||
*/
|
||||
uint32_t y_offset;
|
||||
|
||||
/**
|
||||
* Indicates if we use the standard miptree layout (ALL_LOD_IN_EACH_SLICE),
|
||||
* or if we tightly pack array slices at each LOD (ALL_SLICES_AT_EACH_LOD).
|
||||
*
|
||||
* If ALL_SLICES_AT_EACH_LOD is set, then ARYSPC_LOD0 can be used. Ignored
|
||||
* prior to Gen7.
|
||||
*/
|
||||
enum miptree_array_layout array_layout;
|
||||
|
||||
/**
|
||||
* Format that should be used when setting up the surface state for this
|
||||
* surface. Should correspond to one of the BRW_SURFACEFORMAT_* enums.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue