diff options
author | Aapo Tahkola <aet@rasterburn.org> | 2005-10-26 13:35:41 +0000 |
---|---|---|
committer | Aapo Tahkola <aet@rasterburn.org> | 2005-10-26 13:35:41 +0000 |
commit | 23f076ca67912c1a8ddd7a43f8a3e34c4bc5128a (patch) | |
tree | 23538987d7fcd3b8e391eb21b9a22f3a8f4082f4 /src/mesa/drivers | |
parent | 5f79025e0d3a416dd8428f75612da93283775778 (diff) |
Fix invalid vsf temp count for rv350.
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_context.h b/src/mesa/drivers/dri/r300/r300_context.h index b59f184e38..b4ba612af6 100644 --- a/src/mesa/drivers/dri/r300/r300_context.h +++ b/src/mesa/drivers/dri/r300/r300_context.h @@ -523,11 +523,11 @@ struct r300_vap_reg_state { /* Vertex shader state */ -/* Tested with rv350 and verified from misc web pages. */ +/* Perhaps more if we store programs in vmem? */ #define VSF_MAX_FRAGMENT_LENGTH (256*4) -/* Tested with rv350 and verified from misc web pages. */ -#define VSF_MAX_FRAGMENT_TEMPS (32) +/* Can be tested with colormat currently. */ +#define VSF_MAX_FRAGMENT_TEMPS (14) struct r300_vertex_shader_fragment { |