diff options
author | Marek Olšák <[email protected]> | 2018-02-03 02:03:08 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-02-24 23:08:28 +0100 |
commit | fca7dee9c6aa669764d8179e3064ea28b17d2835 (patch) | |
tree | 80c484417a86e8d7a416ef3b1f89953100a595b1 /src/gallium/drivers/radeonsi/si_pipe.h | |
parent | d2963d8b5f006092bed6b4e6443e5166c0cfdf15 (diff) |
radeonsi: put both tessellation rings into 1 buffer
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pipe.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.h b/src/gallium/drivers/radeonsi/si_pipe.h index 7b23e8c9d73..896b640c17f 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.h +++ b/src/gallium/drivers/radeonsi/si_pipe.h @@ -512,8 +512,7 @@ struct si_context { struct pipe_constant_buffer null_const_buf; /* used for set_constant_buffer(NULL) on CIK */ struct pipe_resource *esgs_ring; struct pipe_resource *gsvs_ring; - struct pipe_resource *tf_ring; - struct pipe_resource *tess_offchip_ring; + struct pipe_resource *tess_rings; union pipe_color_union *border_color_table; /* in CPU memory, any endian */ struct r600_resource *border_color_buffer; union pipe_color_union *border_color_map; /* in VRAM (slow access), little endian */ |