diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-25 08:17:04 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-25 08:20:09 -0700 |
commit | 4c4f691069411c77b33a6bfca64766f861cbc823 (patch) | |
tree | a994178864d6b722ffc18ff356cda818b363c1f6 /src/mesa | |
parent | 78bff07f73a546363b737b33958311efa7b3ce53 (diff) |
Cell: batch_buffer_size should be uint, not ubyte
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/cell/ppu/cell_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/cell/ppu/cell_context.h b/src/mesa/pipe/cell/ppu/cell_context.h index b6c59ff596..3bd88bfd5b 100644 --- a/src/mesa/pipe/cell/ppu/cell_context.h +++ b/src/mesa/pipe/cell/ppu/cell_context.h @@ -102,7 +102,7 @@ struct cell_context uint num_spus; - ubyte batch_buffer_size[CELL_NUM_BATCH_BUFFERS]; + uint batch_buffer_size[CELL_NUM_BATCH_BUFFERS]; ubyte batch_buffer[CELL_NUM_BATCH_BUFFERS][CELL_BATCH_BUFFER_SIZE] ALIGN16_ATTRIB; int cur_batch; /**< which batch buffer is being filled */ |