b=600927; don't print gl extensions in non-debug builds; r=vlad a=b

This commit is contained in:
Benoit Jacob 2010-10-01 21:00:36 -07:00
Родитель 670f1343d5
Коммит 49e2423ac7
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -352,7 +352,11 @@ GLContext::InitExtensions()
const GLubyte *extensions = fGetString(LOCAL_GL_EXTENSIONS);
char *exts = strdup((char *)extensions);
#ifdef DEBUG
static bool once = false;
#else
const bool once = true;
#endif
if (!once) {
printf_stderr("GL extensions: %s\n", exts);
@ -382,7 +386,9 @@ GLContext::InitExtensions()
free(exts);
#ifdef DEBUG
once = true;
#endif
}
PRBool