summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_llvm.h
diff options
context:
space:
mode:
authordelphi <tayhuiqithq@gmail.com>2010-10-04 17:08:33 +0100
committerKeith Whitwell <keithw@vmware.com>2010-10-04 22:08:16 +0100
commit25bb05fef075a87ec6e5f2a989049faff2afedd2 (patch)
treeb4be1e9d5ecbbf3fc17811d1bda2ff8ebb378927 /src/gallium/auxiliary/draw/draw_llvm.h
parent3744d1c7d30543520cede8a6c580f26985978953 (diff)
draw: added userclip planes and updated variant_key
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm.h')
-rw-r--r--src/gallium/auxiliary/draw/draw_llvm.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.h b/src/gallium/auxiliary/draw/draw_llvm.h
index 8ff366956c..4a4d93f33a 100644
--- a/src/gallium/auxiliary/draw/draw_llvm.h
+++ b/src/gallium/auxiliary/draw/draw_llvm.h
@@ -161,10 +161,12 @@ struct draw_llvm_variant_key
{
unsigned nr_vertex_elements:16;
unsigned nr_samplers:12;
- unsigned disable_cliptest:1;
- unsigned disable_viewport:1;
- unsigned disable_zclipping:1;
+ unsigned clip_xy:1;
+ unsigned clip_z:1;
+ unsigned clip_user:1;
+ unsigned bypass_viewport:1;
unsigned enable_d3dclipping:1;
+ unsigned need_edgeflags:1;
/* Variable number of vertex elements:
*/