profile/ivi/mesa.git
2010-03-31 Ian RomanickAdd glsl_type::generate_constructor_prototype
2010-03-31 Ian RomanickRefactor parts of match_function_by_name into process_p...
2010-03-31 Ian RomanickReject array constructor calls in GLSL 1.10
2010-03-31 Ian RomanickUse ast_type_specifier::glsl_type to get the type of...
2010-03-31 Ian RomanickMove type_specifier_to_glsl_type to ast_type_specifier...
2010-03-31 Ian RomanickMore array declaration tests
2010-03-31 Ian RomanickFix big dumbness in glsl_type::get_array_instance
2010-03-31 Ian Romanickglsl_type array constructor generate a real name for...
2010-03-31 Eric AnholtTest that const declarations include initializers.
2010-03-31 Ian RomanickReject declarations with 'in' or 'out' qualifiers
2010-03-31 Ian RomanickAdd 'in' to some parameters of the function
2010-03-31 Ian RomanickAdd some variable declaration qualifier tests
2010-03-31 Ian RomanickFix comment bug and printf bug in previous commit
2010-03-31 Ian RomanickRequire that 'uniform' and 'varying' variables be decla...
2010-03-31 Ian RomanickSlightly refector checks for declarations that must...
2010-03-31 Eric AnholtImplement logical operators.
2010-03-31 Eric AnholtTest that variable names don't use the reserved gl_...
2010-03-31 Eric AnholtTest that discard only appears in the fragment shader.
2010-03-31 Eric AnholtTest that main doesn't take any parameters.
2010-03-31 Eric AnholtTest that a non-void function returns a value.
2010-03-31 Eric AnholtTest that a void function doesn't return a value.
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 RomanickImplement array type handling
2010-03-30 Ian RomanickAdd proper wrappers so that C++ code can use hash_table...
2010-03-30 Ian RomanickInitial bits of constant expression evaluator
2010-03-30 Ian RomanickAdd some array declaration tests
2010-03-30 Ian RomanickArrays are not allowed as vertex shader inputs in GLSL...
2010-03-30 Ian RomanickAdd several tests for vertex shader attributes
2010-03-30 Ian RomanickAdd some checking for vertex shader inputs / attributes
2010-03-29 Ian RomanickAdd parser support for texture rectangle types
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 RomanickAdd glsl_type::is_array and glsl_type::is_float queries
2010-03-29 Ian RomanickAllow single-component constructors
2010-03-29 Ian RomanickAdd tests for :? operator
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 several simple if-statement tests
2010-03-29 Ian RomanickAdd a variable to the symbol table after processing...
2010-03-29 Ian RomanickTrivial code cleanup in ir_dereference::is_lvalue
2010-03-29 Eric AnholtAdd support for builtin radians() and degrees().
2010-03-29 Eric AnholtAdd definitions for 1.10 built-in uniforms for ff state.
2010-03-29 Eric AnholtDon't let swizzles with duplicated components be consid...
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 AnholtAdd the instruction for the parameter variable declarat...
2010-03-29 Eric AnholtImplement dot() builtin.
2010-03-29 Eric AnholtImplement exp2() and log2(), and make ir_unop_exp and...
2010-03-29 Eric AnholtImplement builtin length() function.
2010-03-29 Eric AnholtAdd sqrt() builtin as an IR operation.
2010-03-29 Eric AnholtAdd builtin pow() function.
2010-03-29 Eric AnholtAdd support for builtin deprecated fs varyings.
2010-03-29 Eric AnholtImplement some binary gentype builtin functions.
2010-03-29 Eric AnholtImplement additional unary gentype builtins.
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 variables with the sampler base type to read only.
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 AnholtMake read-only variables not be considered lvalues.
2010-03-27 Eric AnholtAdd constructors for immediate hir constants.
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-27 Eric AnholtIR print visitor: Print out something for the operator.
2010-03-27 Ian RomanickIR print visitor: Print expressions a little better
2010-03-27 Ian RomanickInitial implementation of constructor handling code
2010-03-27 Ian RomanickIR print visitor: print function calls
2010-03-27 Ian RomanickAdd hack ir_call::callee_name to get the name of the...
2010-03-27 Ian RomanickBe sure to set ir_function_signature::definition for...
2010-03-27 Ian RomanickAdd ir_call::iterator to iterate over actual parameters
2010-03-27 Ian RomanickAdd missing parenthesis in foreach_iter
2010-03-26 Ian RomanickAdd some simple constructor tests
2010-03-26 Ian RomanickAdd unary operator to convert unsigned integer to float
2010-03-26 Ian RomanickSlightly change the representation of numeric types
2010-03-26 Ian RomanickAdd glsl_type::components to query total number of...
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 Ian RomanickIR print visitor: Finish printing constants
2010-03-26 Ian RomanickIR print visitor: Remove most of the newlines from...
2010-03-26 Ian RomanickIR print visitor: print expressions
2010-03-26 Ian RomanickIR print visitor: print ir_dereference instructions
2010-03-26 Ian RomanickIR print visitor: Less newlines when printing ir_variables
next