diff options
author | Brian Paul <[email protected]> | 2011-10-10 17:43:59 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-11 07:41:22 -0600 |
commit | e6c237cfd6f53ff569f68255d5d6da15148cd0f5 (patch) | |
tree | abadc1875c9980c465e4fcc1c6fcf9511c9624e1 /src/gallium/auxiliary/draw/draw_llvm.h | |
parent | f0c036536f5acea90f12130dc712ea6b97d488b6 (diff) |
draw/llvm: fix hard-coded number of total clip planes
Instead of 12 use DRAW_TOTAL_CLIP_PLANES. The max number of user-defined
clip planes was increased to 8 so the total number of planes is 14.
This doesn't fix any specific bug, but clearly the old code was wrong.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_llvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.h b/src/gallium/auxiliary/draw/draw_llvm.h index 375b7b8b571..bc361357de5 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.h +++ b/src/gallium/auxiliary/draw/draw_llvm.h @@ -98,7 +98,7 @@ struct draw_jit_context { const float *vs_constants; const float *gs_constants; - float (*planes) [12][4]; + float (*planes) [DRAW_TOTAL_CLIP_PLANES][4]; float *viewport; struct draw_jit_texture textures[PIPE_MAX_VERTEX_SAMPLERS]; |