intel: Remove unused function get_glsl_version()
authorChad Versace <chad@chad-versace.us>
Tue, 27 Sep 2011 20:56:49 +0000 (13:56 -0700)
committerChad Versace <chad@chad-versace.us>
Wed, 28 Sep 2011 18:29:53 +0000 (11:29 -0700)
It was replaced by _mesa_override_glsl_version().

Reviewed-by: Dave Airlie <airlied@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Signed-off-by: Chad Versace <chad@chad-versace.us>
src/mesa/drivers/dri/intel/intel_extensions.c

index e9a36eb4f803343662e619d5a9d6fdba583098a4..104e0969a9ace952f95ca62e53b0245516efd778 100644 (file)
 #include "intel_extensions.h"
 #include "utils.h"
 
-/**
- * \brief Get GLSL version from the environment.
- *
- * If the environment variable INTEL_GLSL_VERSION is set, convert its value
- * to an integer and return it. Otherwise, return the default version, 120.
- */
-static GLuint
-get_glsl_version()
-{
-    const char * s = getenv("INTEL_GLSL_VERSION");
-    if (s == NULL)
-        return 120;
-    else
-        return (GLuint) atoi(s);
-}
-
 /**
  * Initializes potential list of extensions if ctx == NULL, or actually enables
  * extensions for a context.