mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
i965: Remove brw_surface_state struct that is now unused.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
ee643b23ff
commit
f04765922c
1 changed files with 0 additions and 74 deletions
|
|
@ -1225,80 +1225,6 @@ struct gen7_sf_clip_viewport {
|
|||
GLfloat pad1[4];
|
||||
};
|
||||
|
||||
/* Documented in the subsystem/shared-functions/sampler chapter...
|
||||
*
|
||||
* vol5c Shared Functions - 1.13.4.1.1
|
||||
*/
|
||||
struct brw_surface_state
|
||||
{
|
||||
struct {
|
||||
GLuint cube_pos_z:1;
|
||||
GLuint cube_neg_z:1;
|
||||
GLuint cube_pos_y:1;
|
||||
GLuint cube_neg_y:1;
|
||||
GLuint cube_pos_x:1;
|
||||
GLuint cube_neg_x:1;
|
||||
GLuint pad:2;
|
||||
/* Required on gen6 for surfaces accessed through render cache messages.
|
||||
*/
|
||||
GLuint render_cache_read_write:1;
|
||||
/* Ironlake and newer: instead of replicating one of the texels */
|
||||
GLuint cube_corner_average:1;
|
||||
GLuint mipmap_layout_mode:1;
|
||||
GLuint vert_line_stride_ofs:1;
|
||||
GLuint vert_line_stride:1;
|
||||
GLuint color_blend:1;
|
||||
GLuint writedisable_blue:1;
|
||||
GLuint writedisable_green:1;
|
||||
GLuint writedisable_red:1;
|
||||
GLuint writedisable_alpha:1;
|
||||
GLuint surface_format:9; /**< BRW_SURFACEFORMAT_x */
|
||||
GLuint data_return_format:1;
|
||||
GLuint pad0:1;
|
||||
GLuint surface_type:3; /**< BRW_SURFACE_1D/2D/3D/CUBE */
|
||||
} ss0;
|
||||
|
||||
struct {
|
||||
GLuint base_addr;
|
||||
} ss1;
|
||||
|
||||
struct {
|
||||
GLuint pad:2;
|
||||
GLuint mip_count:4;
|
||||
GLuint width:13;
|
||||
GLuint height:13;
|
||||
} ss2;
|
||||
|
||||
struct {
|
||||
GLuint tile_walk:1;
|
||||
GLuint tiled_surface:1;
|
||||
GLuint pad:1;
|
||||
GLuint pitch:18;
|
||||
GLuint depth:11;
|
||||
} ss3;
|
||||
|
||||
struct {
|
||||
GLuint multisample_position_palette_index:3;
|
||||
GLuint pad1:1;
|
||||
GLuint num_multisamples:3;
|
||||
GLuint pad0:1;
|
||||
GLuint render_target_view_extent:9;
|
||||
GLuint min_array_elt:11;
|
||||
GLuint min_lod:4;
|
||||
} ss4;
|
||||
|
||||
struct {
|
||||
GLuint pad1:16;
|
||||
GLuint cache_control:2;
|
||||
GLuint gfdt:1;
|
||||
GLuint encrypt:1;
|
||||
GLuint y_offset:4;
|
||||
GLuint pad0:1;
|
||||
GLuint x_offset:7;
|
||||
} ss5; /* New in G4X */
|
||||
|
||||
};
|
||||
|
||||
/* volume 5c Shared Functions - 1.13.4.1.2 */
|
||||
struct gen7_surface_state
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue