OSDN Git Service

Fix unused variable warning.
[android-x86/external-mesa.git] / ast_to_hir.cpp
2010-03-31 Eric AnholtFix unused variable warning.
2010-03-31 Ian RomanickForbid array comparisons in GLSL 1.10
2010-03-30 Ian RomanickBegin handling array declarations
2010-03-30 Ian RomanickArrays are not allowed as vertex shader inputs in GLSL...
2010-03-30 Ian RomanickAdd some checking for vertex shader inputs / attributes
2010-03-29 Ian RomanickUse call-by-reference for apply_implicit_conversion
2010-03-29 Ian RomanickApply implicit conversions to ?: operator
2010-03-29 Ian RomanickApply implicit conversions to equality operators
2010-03-29 Ian RomanickApply implicit conversions to relational operators
2010-03-29 Ian RomanickApply implicit conversions to arithmetic operators
2010-03-29 Ian RomanickImplement HIR conversion for ?: operator
2010-03-29 Ian RomanickAdd generate_temporary to generate an anonymous temporary
2010-03-29 Ian RomanickImplement HIR conversion for ast_nequal and ast_equal
2010-03-29 Ian RomanickAdd missing break-statements in ast_expression::hir
2010-03-29 Ian RomanickImplement ir_if (for if-statments) and conversion from AST
2010-03-29 Ian RomanickAdd a variable to the symbol table after processing...
2010-03-29 Eric AnholtReject main() declarations with a non-void return value.
2010-03-29 Eric AnholtReject variables marked with attribute in the fragment...
2010-03-29 Eric AnholtImplement the first builtin function: exp().
2010-03-29 Ian RomanickGenerate more correctly diagnostics from some invalid...
2010-03-28 Ian RomanickInitial bits to process initializers in variable declar...
2010-03-27 Ian RomanickReject uniform initializers in GLSL 1.10 mode
2010-03-27 Eric AnholtSet the var_type for arrays to error_type until it...
2010-03-27 Eric AnholtAdd support for ast_to_hir of pre inc/dec.
2010-03-27 Eric AnholtAdd support for ast_to_hir of post inc/dec.
2010-03-27 Eric AnholtAdd support for %= in ast_to_hir.
2010-03-27 Eric AnholtFactor out assignment setup in ast_to_hir.
2010-03-26 Ian RomanickReplace remaining use of is_error_type with glsl_type...
2010-03-26 Ian RomanickReplace remaining uses of is_numeric_base_type with...
2010-03-26 Ian RomanickReplace is_integer_base_type macro with glsl_type:...
2010-03-26 Ian RomanickMake glsl_*_type glsl_type class static data
2010-03-26 Ian RomanickUse glsl_type::is_error instead of comparison with...
2010-03-26 Kenneth GraunkeMove swizzles out of ir_dereference and into their...
2010-03-26 Kenneth GraunkeAdd new abstract ir_rvalue class; rework accordingly.
2010-03-26 Kenneth GraunkeReplace "mode" type tag with virtual as_foo() downcasti...
2010-03-26 Ian RomanickMerge branch 'anholt'
2010-03-26 Eric AnholtFix assignment operators: *=, /=, +=, -=.
2010-03-26 Ian RomanickBefore generating HIR for user code, generate construct...
2010-03-25 Ian RomanickMerge branch 'kwg'
2010-03-25 Ian RomanickUse glsl_type::row_type and glsl_type::column type...
2010-03-25 Ian RomanickReplace several field comparisons with a single pointer...
2010-03-25 Ian RomanickUse glsl_type::get_instance instead of symbol table...
2010-03-25 Ian RomanickReplace accesses to glsl_type data with query functions
2010-03-24 Ian RomanickMerge branch 'anholt'
2010-03-24 Ian Romanickir_function constructor now takes the function name...
2010-03-23 Ian RomanickAdd *some* type checking for assignments
2010-03-23 Ian RomanickDisallow passing NULL for state to _mesa_glsl_error
2010-03-23 Ian RomanickFix typographical errors of "FINISHME"
2010-03-23 Ian RomanickGenerate an error for variables declared with type...
2010-03-23 Ian RomanickSet, and require, a return type for function signatures
2010-03-20 Ian RomanickTrack the function that is currently being defined
2010-03-19 Ian RomanickInitial bits for converting AST return nodes to IR...
2010-03-19 Ian RomanickUse glsl_symbol_table::name_declared_this_scope
2010-03-19 Ian RomanickUse glsl_symbol_table instead of using _mesa_symbol_tab...
2010-03-15 Ian RomanickEnsure that ast_type always has type_name set
2010-03-15 Ian RomanickMove ast_function_expression::hir to ast_function.cpp
2010-03-11 Ian RomanickInitial pass at resolving function calls
2010-03-11 Ian RomanickDefault function parameters to 'in' instead of auto
2010-03-11 Ian RomanickAdd ir_call call to represent function calls.
2010-03-10 Ian RomanickMake ast_function_expression subclass of ast_expression
2010-03-10 Ian RomanickIR variable: Initial work to support GLSL built-in...
2010-03-10 Ian RomanickMove top-level AST to HIR conversion to _mesa_ast_to_hir
2010-03-10 Ian RomanickAST to IR: Mark 'varying' in a vertex shader as 'out'
2010-03-10 Ian RomanickAdd assignment side-effect to the instruction stream
2010-03-09 Ian RomanickConvert is_glsl_type_matrix to glsl_type::is_matrix
2010-03-09 Ian RomanickConvert is_glsl_type_vector to glsl_type::is_vector
2010-03-09 Ian RomanickConvert is_glsl_type_scalar to glsl_type::is_scalar
2010-03-09 Ian RomanickRemove unused function
2010-03-09 Ian RomanickConver IR structures to use exec_list instead of simple...
2010-03-01 Ian RomanickMake AST->HIR conversion a method of ast_node, re-enable
2010-02-23 Ian RomanickRename .cc files to .cpp