зеркало из https://github.com/mozilla/pjs.git
b=600927; don't print gl extensions in non-debug builds; r=vlad a=b
This commit is contained in:
Родитель
670f1343d5
Коммит
49e2423ac7
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче