diff options
author | Alex Deucher <[email protected]> | 2009-07-16 17:35:44 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2009-07-16 17:35:44 -0400 |
commit | 6f63698d2678790bef4d4b84d52c9a15cdb2de1c (patch) | |
tree | 218233f521ed5d9a76e590f624edc6ecd5cf1d85 /src/mesa/drivers/dri/r600/r700_chip.h | |
parent | c42a6163144aa5441262235818b59b3108833a61 (diff) |
R6xx: fix rendering on r6xx/rs780 chips
You always need to emit a fetch shader (fs) even if you
aren't using it. For now, just emit the fs with the
vs address to make the kernel happy.
Diffstat (limited to 'src/mesa/drivers/dri/r600/r700_chip.h')
-rw-r--r-- | src/mesa/drivers/dri/r600/r700_chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r600/r700_chip.h b/src/mesa/drivers/dri/r600/r700_chip.h index 691e9dd7412..f27d3c055f2 100644 --- a/src/mesa/drivers/dri/r600/r700_chip.h +++ b/src/mesa/drivers/dri/r600/r700_chip.h @@ -491,7 +491,7 @@ typedef struct _R700_CHIP_CONTEXT VS_STATE_STRUCT vs; GS_STATE_STRUCT gs; ES_STATE_STRUCT es; - PS_STATE_STRUCT fs; + FS_STATE_STRUCT fs; // SQ CONFIG SQ_CONFIG_STRUCT sq_config; |