diff options
author | Brian Paul <[email protected]> | 2008-09-17 16:48:13 -0600 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-23 17:01:05 -0700 |
commit | ec76910187adc88fc54907ffa3506309ee2abcf3 (patch) | |
tree | ccbe5ad92593ae3330869d9ab4c1499b11a58e55 /src/mesa/main | |
parent | 03bafd1f9fa000abdb794b2ae344a68840c83201 (diff) |
mesa: new gl_fragment_program fields indicating use of fog, front-facing, point coord
(cherry picked from commit d7a7b0a10dd355fbeb7a404091a42d4ab558c820)
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 3370aa29776..19cf6f56d1a 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1932,7 +1932,10 @@ struct gl_fragment_program { struct gl_program Base; /**< base class */ GLenum FogOption; - GLboolean UsesKill; + GLboolean UsesKill; /**< shader uses KIL instruction */ + GLboolean UsesPointCoord; /**< shader uses gl_PointCoord */ + GLboolean UsesFrontFacing; /**< shader used gl_FrontFacing */ + GLboolean UsesFogFragCoord; /**< shader used gl_FogFragCoord */ }; |