From 6895dfb1843e8039e8c2f40c65362cdc40165681 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Tue, 3 Feb 2015 12:49:19 +0100 Subject: [PATCH] radeonsi: add polygon stipple texture slot MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Michel Dänzer --- src/gallium/drivers/radeonsi/si_state.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index d2feb7da47e..263728963d4 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -109,14 +109,17 @@ union si_state { struct si_pm4_state *array[0]; }; -#define SI_NUM_USER_SAMPLERS 16 /* AKA OpenGL textures units per shader */ +#define SI_NUM_USER_SAMPLERS 16 /* AKA OpenGL textures units per shader */ +#define SI_POLY_STIPPLE_SAMPLER SI_NUM_USER_SAMPLERS +#define SI_NUM_SAMPLERS (SI_POLY_STIPPLE_SAMPLER + 1) /* User sampler views: 0..15 - * FMASK sampler views: 16..31 (no sampler states) + * Polygon stipple tex: 16 + * FMASK sampler views: 17..33 (no sampler states) */ -#define SI_FMASK_TEX_OFFSET SI_NUM_USER_SAMPLERS -#define SI_NUM_SAMPLER_VIEWS (SI_FMASK_TEX_OFFSET + SI_NUM_USER_SAMPLERS) -#define SI_NUM_SAMPLER_STATES SI_NUM_USER_SAMPLERS +#define SI_FMASK_TEX_OFFSET SI_NUM_SAMPLERS +#define SI_NUM_SAMPLER_VIEWS (SI_FMASK_TEX_OFFSET + SI_NUM_SAMPLERS) +#define SI_NUM_SAMPLER_STATES SI_NUM_SAMPLERS /* User constant buffers: 0..15 * Driver state constants: 16 -- 2.11.0