Mesa (glsl2): glsl2: Use Elements from main/compiler. h instead of open-coding

Ian Romanick idr at kemper.freedesktop.org
Fri Aug 13 01:07:25 UTC 2010


Module: Mesa
Branch: glsl2
Commit: 261bbc011d11ab9e390cd5fe9f5151821eefaffa
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=261bbc011d11ab9e390cd5fe9f5151821eefaffa

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Thu Aug 12 15:05:39 2010 -0700

glsl2: Use Elements from main/compiler.h instead of open-coding

---

 src/glsl/builtin_function.cpp                |    5 +----
 src/glsl/builtin_types.h                     |    4 ----
 src/glsl/builtins/tools/generate_builtins.pl |    5 +----
 src/glsl/glsl_types.cpp                      |    1 +
 src/glsl/ir_variable.cpp                     |    5 +----
 src/mesa/program/ir_to_mesa.cpp              |    1 +
 6 files changed, 5 insertions(+), 16 deletions(-)

diff --git a/src/glsl/builtin_function.cpp b/src/glsl/builtin_function.cpp
index 12e6909..1d9a58a 100644
--- a/src/glsl/builtin_function.cpp
+++ b/src/glsl/builtin_function.cpp
@@ -23,6 +23,7 @@
  */
 
 #include <stdio.h>
+#include "main/compiler.h"
 #include "glsl_parser_extras.h"
 #include "ir_reader.h"
 #include "program.h"
@@ -4799,10 +4800,6 @@ static const char *functions_for_EXT_texture_array_fs [] = {
    builtins_EXT_texture_array_fs_textures,
 };
 
-#ifndef Elements
-#define Elements(x) (sizeof(x)/sizeof(*(x)))
-#endif
-
 void *builtin_mem_ctx = NULL;
 
 void
diff --git a/src/glsl/builtin_types.h b/src/glsl/builtin_types.h
index bfa4f3f..7b94aac 100644
--- a/src/glsl/builtin_types.h
+++ b/src/glsl/builtin_types.h
@@ -21,10 +21,6 @@
  * DEALINGS IN THE SOFTWARE.
  */
 
-#ifndef Elements
-#define Elements(x) (sizeof(x)/sizeof(*(x)))
-#endif
-
 const glsl_type glsl_type::_error_type =
    glsl_type(GL_INVALID_ENUM, GLSL_TYPE_ERROR, 0, 0, "");
 
diff --git a/src/glsl/builtins/tools/generate_builtins.pl b/src/glsl/builtins/tools/generate_builtins.pl
index 61d511d..91ef891 100755
--- a/src/glsl/builtins/tools/generate_builtins.pl
+++ b/src/glsl/builtins/tools/generate_builtins.pl
@@ -62,6 +62,7 @@ print << 'EOF';
  */
 
 #include <stdio.h>
+#include "main/compiler.h"
 #include "glsl_parser_extras.h"
 #include "ir_reader.h"
 #include "program.h"
@@ -110,10 +111,6 @@ foreach $version (@versions) {
 }
 
 print << 'EOF';
-#ifndef Elements
-#define Elements(x) (sizeof(x)/sizeof(*(x)))
-#endif
-
 void *builtin_mem_ctx = NULL;
 
 void
diff --git a/src/glsl/glsl_types.cpp b/src/glsl/glsl_types.cpp
index 2aba1e0..8e80cf9 100644
--- a/src/glsl/glsl_types.cpp
+++ b/src/glsl/glsl_types.cpp
@@ -23,6 +23,7 @@
 
 #include <cstdio>
 #include <stdlib.h>
+#include "main/compiler.h"
 #include "glsl_symbol_table.h"
 #include "glsl_parser_extras.h"
 #include "glsl_types.h"
diff --git a/src/glsl/ir_variable.cpp b/src/glsl/ir_variable.cpp
index d88cb51..917c067 100644
--- a/src/glsl/ir_variable.cpp
+++ b/src/glsl/ir_variable.cpp
@@ -21,15 +21,12 @@
  * DEALINGS IN THE SOFTWARE.
  */
 
+#include "main/compiler.h"
 #include "ir.h"
 #include "glsl_parser_extras.h"
 #include "glsl_symbol_table.h"
 #include "builtin_variables.h"
 
-#ifndef Elements
-#define Elements(x) (sizeof(x)/sizeof(*(x)))
-#endif
-
 static void generate_ARB_draw_buffers_variables(exec_list *,
 						struct _mesa_glsl_parse_state *,
 						bool, _mesa_glsl_parser_targets);
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp
index a9a6f97..ecb1306 100644
--- a/src/mesa/program/ir_to_mesa.cpp
+++ b/src/mesa/program/ir_to_mesa.cpp
@@ -31,6 +31,7 @@
  */
 
 #include <stdio.h>
+#include "main/compiler.h"
 #include "ir.h"
 #include "ir_visitor.h"
 #include "ir_print_visitor.h"




More information about the mesa-commit mailing list