diff options
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 */ |