diff options
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_gmem.h')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_gmem.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_gmem.h b/src/gallium/drivers/freedreno/freedreno_gmem.h index ff322df3c2f..81f9b6abe98 100644 --- a/src/gallium/drivers/freedreno/freedreno_gmem.h +++ b/src/gallium/drivers/freedreno/freedreno_gmem.h @@ -47,12 +47,14 @@ struct fd_tile { struct fd_gmem_stateobj { struct pipe_scissor_state scissor; - uint cpp; + uint32_t cbuf_base[4]; + uint32_t zsbuf_base; + uint8_t cbuf_cpp[4]; + uint8_t zsbuf_cpp; uint16_t bin_h, nbins_y; uint16_t bin_w, nbins_x; uint16_t minx, miny; uint16_t width, height; - bool has_zs; /* gmem config using depth/stencil? */ }; struct fd_context; |