glsl: Add using statements for standard library functions.
authorVinson Lee <vlee@vmware.com>
Fri, 4 Feb 2011 03:19:12 +0000 (19:19 -0800)
committerVinson Lee <vlee@vmware.com>
Fri, 4 Feb 2011 03:19:12 +0000 (19:19 -0800)
commit61c59234f916406512b3591f46599cc29a5d8e23
tree06e26d737b09487630fc685e234705a99bc667e5
parent151a945d38d8c9231799b00364c5b85c8a4b2279
glsl: Add using statements for standard library functions.

Standard library functions in C++ are in the std namespace. When using
C++-style header files for the standard library, some compilers, such as
Sun Studio, provide symbols only for the std namespace and not for the
global namespace.

This patch adds using statements for standard library functions. Another
option could have been to prepend standard library function calls with
'std::'.

This patch fixes several compilation errors with Sun Studio.
14 files changed:
src/glsl/ast_expr.cpp
src/glsl/ast_type.cpp
src/glsl/hir_field_selection.cpp
src/glsl/ir_print_visitor.cpp
src/glsl/ir_validate.cpp
src/glsl/lower_mat_op_to_vec.cpp
src/glsl/opt_constant_propagation.cpp
src/glsl/opt_constant_variable.cpp
src/glsl/opt_dead_code.cpp
src/glsl/opt_dead_code_local.cpp
src/glsl/opt_dead_functions.cpp
src/glsl/opt_structure_splitting.cpp
src/glsl/opt_swizzle_swizzle.cpp
src/glsl/opt_tree_grafting.cpp