diff options
author | Keith Whitwell <[email protected]> | 2009-05-05 12:12:28 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-05-08 14:57:28 +0100 |
commit | b6e8256899a9a93c665c34e10efcc918f2fcc095 (patch) | |
tree | 87f365d4ca42115f278c958a0040ce742a570356 /src/mesa/main/context.h | |
parent | 751f73e2812cf8185c775a91c16cf8565b85536d (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/context.h')
-rw-r--r-- | src/mesa/main/context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index ecc1cec7799..5b57d88029c 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -151,6 +151,10 @@ extern struct _glapi_table * _mesa_get_dispatch(GLcontext *ctx); +void +_mesa_set_mvp_with_dp4( GLcontext *ctx, + GLboolean flag ); + /** \name Miscellaneous */ /*@{*/ |