diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-05-05 12:12:28 +0100 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-05-05 13:14:53 +0100 |
commit | 113403ef51e2ec764db061aabf569d6f1a1a3ef0 (patch) | |
tree | c21df3f7acaa4406a48200bb4dfa59073257c1a0 /src/mesa/main/mtypes.h | |
parent | 22b417b75ce0e6658a5d1e0e80cb6c3fdf631774 (diff) |
mesa: more complete fix for transform_invarient glitches
Add a new flag mvp_with_dp4 in the context, and use that to switch
both ffvertex.c and programopt.c vertex transformation code to
either DP4 or MUL/MAD implementations.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r-- | src/mesa/main/mtypes.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index cf71077728..587dc80146 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2980,6 +2980,12 @@ struct __GLcontextRec /** software compression/decompression supported or not */ GLboolean Mesa_DXTn; + /** + * Use dp4 (rather than mul/mad) instructions for position + * transformation? + */ + GLboolean mvp_with_dp4; + /** Core tnl module support */ struct gl_tnl_module TnlModule; |