From 5bff58b421941d3d6e7b9a6c126a3a703151509d Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 23 Feb 2002 00:28:29 +0000 Subject: [PATCH] false is default --- panda/src/glgsg/config_glgsg.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/panda/src/glgsg/config_glgsg.cxx b/panda/src/glgsg/config_glgsg.cxx index b2320cd2fb..f1ce844f69 100644 --- a/panda/src/glgsg/config_glgsg.cxx +++ b/panda/src/glgsg/config_glgsg.cxx @@ -67,9 +67,10 @@ bool gl_auto_normalize_lighting = config_glgsg.GetBool("auto-normalize-lighting" // Configure this true to indicate the current version of GL fully // supports textures with B, G, R ordering; false if it only supports -// R, G, B. +// R, G, B. false will always work, but true might be faster if the +// implementation supports it. #ifdef GL_BGR -bool gl_supports_bgr = config_glgsg.GetBool("gl-supports-bgr", true); +bool gl_supports_bgr = config_glgsg.GetBool("gl-supports-bgr", false); #else // If it's not even defined, we can't use it. bool gl_supports_bgr = false;