diff options
author | Brian Paul <[email protected]> | 2004-10-02 16:39:09 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-10-02 16:39:09 +0000 |
commit | 53f82c5aadbb15585754bfacf3237093eccdb2ce (patch) | |
tree | 93c013f62d99caf8581c774f768cb7f365350095 /src/mesa/main/config.h | |
parent | 289ffee2a017308a9a97689662293613dc62d9e9 (diff) |
added support for GL_ARB_draw_buffers
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 496997b9574..bc9202eaede 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -202,6 +202,13 @@ /*@}*/ +/** For GL_ARB_draw_buffers */ +/*@{*/ +#define MAX_DRAW_BUFFERS 1 +/*@}*/ + + + /** * \name Mesa-specific parameters */ @@ -283,4 +290,12 @@ /*@}*/ +/** + * Maximum number of temporary vertices required for clipping. + * + * Used in array_cache and tnl modules. + */ +#define MAX_CLIPPED_VERTICES ((2 * (6 + MAX_CLIP_PLANES))+1) + + #endif /* CONFIG_H */ |