Mesa (master): glsl: Change type of is_array to bool.

Matt Turner mattst88 at kemper.freedesktop.org
Fri Jul 12 03:58:31 UTC 2013


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

Author: Matt Turner <mattst88 at gmail.com>
Date:   Mon Jun 10 15:59:55 2013 -0700

glsl: Change type of is_array to bool.

Reviewed-by: Ian Romanick <ian.d.romainck at intel.com>

---

 src/glsl/ast.h                  |    8 ++++----
 src/glsl/glsl_parser_extras.cpp |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/glsl/ast.h b/src/glsl/ast.h
index 103146c..b86f97b 100644
--- a/src/glsl/ast.h
+++ b/src/glsl/ast.h
@@ -317,13 +317,13 @@ public:
 
 class ast_declaration : public ast_node {
 public:
-   ast_declaration(const char *identifier, int is_array, ast_expression *array_size,
+   ast_declaration(const char *identifier, bool is_array, ast_expression *array_size,
 		   ast_expression *initializer);
    virtual void print(void) const;
 
    const char *identifier;
    
-   int is_array;
+   bool is_array;
    ast_expression *array_size;
 
    ast_expression *initializer;
@@ -498,7 +498,7 @@ public:
    const char *type_name;
    ast_struct_specifier *structure;
 
-   int is_array;
+   bool is_array;
    ast_expression *array_size;
 
    unsigned precision:2;
@@ -566,7 +566,7 @@ public:
 
    ast_fully_specified_type *type;
    const char *identifier;
-   int is_array;
+   bool is_array;
    ast_expression *array_size;
 
    static void parameters_to_hir(exec_list *ast_parameters,
diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp
index f4087df..664f8d1 100644
--- a/src/glsl/glsl_parser_extras.cpp
+++ b/src/glsl/glsl_parser_extras.cpp
@@ -959,7 +959,7 @@ ast_declaration::print(void) const
 }
 
 
-ast_declaration::ast_declaration(const char *identifier, int is_array,
+ast_declaration::ast_declaration(const char *identifier, bool is_array,
 				 ast_expression *array_size,
 				 ast_expression *initializer)
 {




More information about the mesa-commit mailing list