Mesa (master): glcpp: Conditionally define macro GL_AMD_conservative_depth

Chad Versace chadversary at kemper.freedesktop.org
Thu Jan 27 01:49:38 UTC 2011


Module: Mesa
Branch: master
Commit: 0423f24eb8a415cf704c307c93e2a8647e799002
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0423f24eb8a415cf704c307c93e2a8647e799002

Author: Chad Versace <chad.versace at intel.com>
Date:   Thu Jan 27 01:40:06 2011 -0800

glcpp: Conditionally define macro GL_AMD_conservative_depth

Define macro GL_AMD_conservative_depth to 1 when its extension is
enabled.

---

 src/glsl/glcpp/glcpp-parse.y |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/glsl/glcpp/glcpp-parse.y b/src/glsl/glcpp/glcpp-parse.y
index dacd321..b449eb2 100644
--- a/src/glsl/glcpp/glcpp-parse.y
+++ b/src/glsl/glcpp/glcpp-parse.y
@@ -1124,6 +1124,8 @@ glcpp_parser_create (const struct gl_extensions *extensions, int api)
 
 	   if (extensions->ARB_explicit_attrib_location)
 	      add_builtin_define(parser, "GL_ARB_explicit_attrib_location", 1);
+	   if (extensions->AMD_conservative_depth)
+	      add_builtin_define(parser, "GL_AMD_conservative_depth", 1);
 	}
 
 	language_version = 110;




More information about the mesa-commit mailing list