diff options
author | Roland Scheidegger <[email protected]> | 2005-10-13 00:33:46 +0000 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2005-10-13 00:33:46 +0000 |
commit | 6ff023fe3a3fab14c33d20218155f82e1ed76b7e (patch) | |
tree | be04d53f8ec6a81d3b6225ab4efe912dd00bb55b /src | |
parent | 96e1ccedec19a3314b43461387c8c391a43ba78b (diff) |
fix potential bug when emitting elts with lots of components
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_context.h b/src/mesa/drivers/dri/r200/r200_context.h index e7fb3b6b2a9..8503070965d 100644 --- a/src/mesa/drivers/dri/r200/r200_context.h +++ b/src/mesa/drivers/dri/r200/r200_context.h @@ -651,7 +651,8 @@ struct r200_tcl_info { GLint last_offset; GLuint hw_primitive; - struct r200_dma_region *aos_components[8]; +/* FIXME: what's the maximum number of components? */ + struct r200_dma_region *aos_components[11]; GLuint nr_aos_components; GLuint *Elts; |