diff options
author | Christian Gmeiner <[email protected]> | 2020-03-21 11:16:37 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-30 15:30:15 +0000 |
commit | 95763e20cea3e85e7886421a73be7a68a84b5c80 (patch) | |
tree | 07d8f2f41c085af6b2b9baf7ed0c837817057462 /src/gallium/drivers/etnaviv/etnaviv_internal.h | |
parent | 27d58a1c20cc39a87fe36455f221f6bd4ef811c0 (diff) |
etnaviv: get rid of SE_CLIP_*
The only difference between e.g. SE_SCISSOR_RIGHT and SE_CLIP_RIGHT
is the used margin value. With that information we can remove
SE_CLIP_* and apply the different margins during emit time.
Signed-off-by: Christian Gmeiner <[email protected]>
Reviewed-by: Jonathan Marek <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4278>
Diffstat (limited to 'src/gallium/drivers/etnaviv/etnaviv_internal.h')
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_internal.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_internal.h b/src/gallium/drivers/etnaviv/etnaviv_internal.h index bdaa7ad6521..562c2cbccf4 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_internal.h +++ b/src/gallium/drivers/etnaviv/etnaviv_internal.h @@ -163,8 +163,6 @@ struct compiled_scissor_state { uint32_t SE_SCISSOR_TOP; uint32_t SE_SCISSOR_RIGHT; uint32_t SE_SCISSOR_BOTTOM; - uint32_t SE_CLIP_RIGHT; - uint32_t SE_CLIP_BOTTOM; }; /* Compiled pipe_viewport_state */ @@ -179,8 +177,6 @@ struct compiled_viewport_state { uint32_t SE_SCISSOR_TOP; uint32_t SE_SCISSOR_RIGHT; uint32_t SE_SCISSOR_BOTTOM; - uint32_t SE_CLIP_RIGHT; - uint32_t SE_CLIP_BOTTOM; uint32_t PE_DEPTH_NEAR; uint32_t PE_DEPTH_FAR; }; @@ -203,8 +199,6 @@ struct compiled_framebuffer_state { uint32_t SE_SCISSOR_TOP; uint32_t SE_SCISSOR_RIGHT; uint32_t SE_SCISSOR_BOTTOM; - uint32_t SE_CLIP_RIGHT; - uint32_t SE_CLIP_BOTTOM; uint32_t RA_MULTISAMPLE_UNK00E04; uint32_t RA_MULTISAMPLE_UNK00E10[VIVS_RA_MULTISAMPLE_UNK00E10__LEN]; uint32_t RA_CENTROID_TABLE[VIVS_RA_CENTROID_TABLE__LEN]; |