diff options
author | Brian Paul <[email protected]> | 2001-07-16 15:54:23 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-07-16 15:54:23 +0000 |
commit | a1503b00f863a48a517939a42d512f9cfe77f79c (patch) | |
tree | cf8be4ed948b2e97160482c1b7cf4164b8ef9b0b /src/mesa/main/config.h | |
parent | fba5e9546874e1e140a3862b31e35b68832cc22d (diff) |
Various 16-bit GLchan fixes and Win32 fixes (Gerk Huisma)
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 507f499a1fc..fa65d611bd0 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.33 2001/07/13 20:07:37 brianp Exp $ */ +/* $Id: config.h,v 1.34 2001/07/16 15:54:23 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -152,7 +152,9 @@ * work. 32 doesn't work because of integer overflow problems in the * rasterizer code. */ +#ifndef DEFAULT_SOFTWARE_DEPTH_BITS #define DEFAULT_SOFTWARE_DEPTH_BITS 16 +#endif #if DEFAULT_SOFTWARE_DEPTH_BITS <= 16 #define DEFAULT_SOFTWARE_DEPTH_TYPE GLushort #else |