diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2009-09-08 17:57:43 +0800 |
---|---|---|
committer | Chia-I Wu <olvaffe@gmail.com> | 2009-09-13 17:38:05 +0800 |
commit | 0fc1cd5e9125dfe86b9dc31ec8084ee1f28aef47 (patch) | |
tree | a4827b09ae5244891ad544ff17d118aa4fd0073c /src/mesa/tnl/tnl_features.h | |
parent | 5f471a37aa00d1dd544d76a6b2de47f0b60adcba (diff) |
mesa/tnl: Respect mfeatures.h.
_tnl_RasterPos should be disabled with FEATURE_rastpos.
Diffstat (limited to 'src/mesa/tnl/tnl_features.h')
-rw-r--r-- | src/mesa/tnl/tnl_features.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mesa/tnl/tnl_features.h b/src/mesa/tnl/tnl_features.h new file mode 100644 index 0000000000..0c86dd09a4 --- /dev/null +++ b/src/mesa/tnl/tnl_features.h @@ -0,0 +1,13 @@ +#ifndef _TNL_FEATURES_H +#define _TNL_FEATURES_H + +#include "main/mtypes.h" + +#if FEATURE_rastpos + +extern void +_tnl_RasterPos(GLcontext *ctx, const GLfloat vObj[4]); + +#endif + +#endif /* _TNL_FEATURES_H */ |