diff options
author | Eric Anholt <[email protected]> | 2018-06-08 08:04:00 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-06-14 16:52:25 -0700 |
commit | 7d8fe50af32dff78207b9e259541372bc1730607 (patch) | |
tree | 40bc33054c12b41f6305b156ee62bd6a2870ecf5 /src | |
parent | 48011c42aaf0efc5afccc8fd90f4604182d21314 (diff) |
v3d: Remove some unused context fields from vc4.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/v3d/v3d_context.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gallium/drivers/v3d/v3d_context.h b/src/gallium/drivers/v3d/v3d_context.h index 47945f96497..a22e1e76ed2 100644 --- a/src/gallium/drivers/v3d/v3d_context.h +++ b/src/gallium/drivers/v3d/v3d_context.h @@ -424,9 +424,6 @@ struct v3d_context { struct v3d_rasterizer_state { struct pipe_rasterizer_state base; - /* VC5_CONFIGURATION_BITS */ - uint8_t config_bits[3]; - float point_size; /** @@ -446,14 +443,6 @@ struct v3d_depth_stencil_alpha_state { enum v3d_ez_state ez_state; - /** Uniforms for stencil state. - * - * Index 0 is either the front config, or the front-and-back config. - * Index 1 is the back config if doing separate back stencil. - * Index 2 is the writemask config if it's not a common mask value. - */ - uint32_t stencil_uniforms[3]; - uint8_t stencil_front[6]; uint8_t stencil_back[6]; }; |