From fe1b53ebcfd1440c7c20382f42b8b1638ab6f436 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 30 Dec 2004 21:33:21 +0000 Subject: [PATCH] remove unused variable reference --- panda/src/glstuff/glmisc_src.cxx | 9 --------- panda/src/glstuff/glmisc_src.h | 1 - 2 files changed, 10 deletions(-) diff --git a/panda/src/glstuff/glmisc_src.cxx b/panda/src/glstuff/glmisc_src.cxx index bf6c68b06c..c61d588efd 100644 --- a/panda/src/glstuff/glmisc_src.cxx +++ b/panda/src/glstuff/glmisc_src.cxx @@ -51,15 +51,6 @@ ConfigVariableBool CLP(save_mipmaps) PRC_DESC("Configure this true to cause the generated mipmap images to be " "written out to image files on the disk as they are generated.")); -ConfigVariableBool CLP(auto_normalize_lighting) - ("auto-normalize-lighting", true, - PRC_DESC("Configure this true to cause all lighting normals to automatically " - "be normalized by the graphics hardware before rendering. This is " - "necessary if you intend to render things under scale transforms and " - "expect lighting to work correctly. Maybe one day there will be " - "another way to set this at runtime, instead of only as a configure " - "variable.")); - ConfigVariableBool CLP(color_mask) ("gl-color-mask", true, PRC_DESC("Configure this false if your GL's implementation of glColorMask() " diff --git a/panda/src/glstuff/glmisc_src.h b/panda/src/glstuff/glmisc_src.h index 24d97a9efe..98b25bee22 100644 --- a/panda/src/glstuff/glmisc_src.h +++ b/panda/src/glstuff/glmisc_src.h @@ -28,7 +28,6 @@ extern ConfigVariableBool CLP(ignore_mipmaps); extern ConfigVariableBool CLP(force_mipmaps); extern ConfigVariableBool CLP(show_mipmaps); extern ConfigVariableBool CLP(save_mipmaps); -extern ConfigVariableBool CLP(auto_normalize_lighting); extern ConfigVariableBool CLP(color_mask); extern EXPCL_GL void CLP(init_classes)();