diff options
author | marha <marha@users.sourceforge.net> | 2011-01-12 20:56:18 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-01-12 20:56:18 +0000 |
commit | ca14143b18b939ee4506936e77478f8c593802b5 (patch) | |
tree | 83cf183c0a8814b67d664d002611da95bc78a98f /mesalib/src/mesa/main/context.c | |
parent | 0f84d9e7c6d9556e3b00adc5db3235c9291eeaa1 (diff) | |
parent | 2ebdcfeee38bed8c65daa78aa7d18d8d1d93ed85 (diff) | |
download | vcxsrv-ca14143b18b939ee4506936e77478f8c593802b5.tar.gz vcxsrv-ca14143b18b939ee4506936e77478f8c593802b5.tar.bz2 vcxsrv-ca14143b18b939ee4506936e77478f8c593802b5.zip |
svn merge ^/branches/released .
Diffstat (limited to 'mesalib/src/mesa/main/context.c')
-rw-r--r-- | mesalib/src/mesa/main/context.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mesalib/src/mesa/main/context.c b/mesalib/src/mesa/main/context.c index 8a4041f68..90df5fc9e 100644 --- a/mesalib/src/mesa/main/context.c +++ b/mesalib/src/mesa/main/context.c @@ -96,6 +96,7 @@ #include "fbobject.h"
#include "feedback.h"
#include "fog.h"
+#include "formats.h"
#include "framebuffer.h"
#include "hint.h"
#include "hash.h"
@@ -417,6 +418,10 @@ one_time_init( struct gl_context *ctx ) MESA_VERSION_STRING, __DATE__, __TIME__);
}
#endif
+
+#ifdef DEBUG
+ _mesa_test_formats();
+#endif
}
/* per-API one-time init */
|