diff options
author | Brian Paul <[email protected]> | 2000-10-18 15:02:59 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-18 15:02:59 +0000 |
commit | ce938b307e5dcd06a03baf60903c2ecd682cd8d5 (patch) | |
tree | 435edda496e82f84fab7d0b0784db4336b940983 /src/mesa/main/config.h | |
parent | d3672166787028857ea51ad9570cab7e173898c3 (diff) |
More fixes for MAX_TEXTURE_UNITS > 2. Seems to work now.
Misc code clean-ups, minor bug fixes.
MAX_TEXTURE_UNITS now defaults to 3.
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 562040d431a..5526233edd7 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,8 +1,8 @@ -/* $Id: config.h,v 1.17 2000/09/26 20:53:53 brianp Exp $ */ +/* $Id: config.h,v 1.18 2000/10/18 15:02:59 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.3 + * Version: 3.5 * * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * @@ -103,7 +103,7 @@ #define MAX_TEXTURE_LEVELS 12 /* Number of texture units - GL_ARB_multitexture */ -#define MAX_TEXTURE_UNITS 2 +#define MAX_TEXTURE_UNITS 3 /* Maximum viewport/image size: */ #define MAX_WIDTH 2048 |