limit max program/param length to 255 (spotted by sroland)
authorAapo Tahkola <aet@rasterburn.org>
Thu, 20 Apr 2006 19:43:21 +0000 (19:43 +0000)
committerAapo Tahkola <aet@rasterburn.org>
Thu, 20 Apr 2006 19:43:21 +0000 (19:43 +0000)
src/mesa/drivers/dri/r300/r300_context.h
src/mesa/drivers/dri/r300/r300_state.c

index 7504bd8..58f789e 100644 (file)
@@ -549,7 +549,8 @@ struct r300_vap_reg_state {
 /* Vertex shader state */
 
 /* Perhaps more if we store programs in vmem? */
-#define VSF_MAX_FRAGMENT_LENGTH (256*4)
+/* drm_r300_cmd_header_t->vpu->count is unsigned char */
+#define VSF_MAX_FRAGMENT_LENGTH (255*4)
        
 /* Can be tested with colormat currently. */
 #define VSF_MAX_FRAGMENT_TEMPS (14)
index 951b925..ae0d271 100644 (file)
@@ -1403,6 +1403,7 @@ void r300_setup_rs_unit(GLcontext *ctx)
 #define bump_vpu_count(ptr, new_count)   do{\
        drm_r300_cmd_header_t* _p=((drm_r300_cmd_header_t*)(ptr));\
        int _nc=(new_count)/4; \
+       assert(_nc < 256); \
        if(_nc>_p->vpu.count)_p->vpu.count=_nc;\
        }while(0)