profile/ivi/mesa.git
2010-04-29 Kenneth GraunkeSet language_version to 130 (the max currently supporte...
2010-04-29 Kenneth GraunkeAdd stub ir_reader and new 'i' mode for reading IR...
2010-04-29 Kenneth GraunkeAdd a simple S-Expression reader and printer.
2010-04-28 Kenneth GraunkeUse "neg" when printing/reading unary negation rather...
2010-04-28 Kenneth GraunkeMove array of operator strings out of ir_print_visitor...
2010-04-28 Kenneth GraunkeFactor out parameter list replacement for later reuse.
2010-04-28 Kenneth GraunkeFactor out parameter list matching from ast_function...
2010-04-28 Kenneth GraunkeFactor out qualifier checking code for later reuse.
2010-04-28 Kenneth Graunkeir_print_visitor: Re-parenthesize ir_call output.
2010-04-28 Kenneth Graunkeir_print_visitor: Print return type of ir_function_sign...
2010-04-28 Kenneth Graunkeir_print_visitor: Print (constant bool (1)) instead...
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parens around...
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parens around...
2010-04-28 Kenneth Graunkeir_print_visitor: Fix unclosed parenthesis in (call...
2010-04-28 Kenneth Graunkeir_print_visitor: Fix unclosed parenthesis in (assign ...
2010-04-28 Kenneth GraunkeAdd parens around printed IR so it's an official list...
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parenthesis around...
2010-04-28 Kenneth GraunkeRefactor ir_expression::get_num_operands.
2010-04-28 Kenneth Graunkeir_print_visitor: print the type of expressions.
2010-04-28 Kenneth Graunkeir_print_visitor: Remove unnecessary parenthesis around...
2010-04-28 Kenneth GraunkePrint full type for ir_constant instead of base and...
2010-04-26 Ian RomanickImplement gl_TextureMatrix built-in uniform
2010-04-26 Ian RomanickMake private glsl_type singletons public
2010-04-26 Ian RomanickInitial implementation of #line
2010-04-23 Eric Anholtbuiltin_functions: Clean up compiler warning about...
2010-04-23 Eric AnholtDe-obfuscate some of builtin_types.h.
2010-04-23 Eric Anholtir_function_inlining: Implement inlining in many more...
2010-04-23 Eric AnholtPut static pointers to vec[234]_types along with the...
2010-04-23 Eric AnholtReplace builtin_types.h generation with the generated...
2010-04-23 Eric AnholtFix the swizzling of vector constructors from scalars.
2010-04-23 Eric Anholtir_function_inlining: Avoid NULL dereference on assignm...
2010-04-23 Ian RomanickZero-out the entire parser state structure at initializ...
2010-04-23 Ian RomanickAdd missing 'else's to fix extension processing
2010-04-22 Kenneth GraunkeFix illegal (var_ref (array_ref ...)) in matrix constru...
2010-04-22 Kenneth GraunkeActually emit temp declaration in vector comparison...
2010-04-21 Kenneth GraunkeFix ir_dead_code for function refactoring.
2010-04-21 Kenneth GraunkeEmit body for constructors in the right place.
2010-04-21 Kenneth GraunkeRemove ir_label since it is no longer used.
2010-04-21 Kenneth GraunkeRefactor IR function representation.
2010-04-21 Kenneth GraunkeUse ir_function_signature::function_name() rather than...
2010-04-21 Kenneth GraunkeEnsure that both parameter lists are the same length...
2010-04-21 Ian RomanickAdd missing break statement
2010-04-19 Eric AnholtRemove dead code assignments and variable declarations.
2010-04-19 Eric AnholtMark some variables as having usage beyond the shader...
2010-04-16 Ian RomanickWhile-loops also start a new scope.
2010-04-16 Eric AnholtAvoid generating ir_if for &&, || short-circuiting...
2010-04-16 Eric AnholtAdd support for inlining calls done inside of expressions.
2010-04-16 Eric AnholtMake && and || only evaluate the RHS when the LHS requi...
2010-04-15 Eric AnholtAdd an ir_if simplification pass.
2010-04-14 Eric AnholtCheck that the return type of function definition match...
2010-04-14 Eric AnholtCheck that function definition parameter qualifiers...
2010-04-14 Eric AnholtReturn the rvalue of a variable decl to fix while ...
2010-04-14 Eric AnholtFix the type of gl_FogFragCoord.
2010-04-08 Eric AnholtAdd an implementation of gentype-only clamp().
2010-04-08 Eric AnholtAdd builtin implementations of vector comparison functions.
2010-04-08 Eric AnholtAdd support for builtin gentype mix(gentype a, gentype b)
2010-04-08 Eric AnholtAdd buitlin functions for any(), all(), not().
2010-04-08 Eric AnholtAdd builtin normalize() functions.
2010-04-08 Eric AnholtRepeat the optimization passes until we stop making...
2010-04-08 Eric AnholtAdd inlining support for array dereferences.
2010-04-08 Eric AnholtInline functions consisting of a return of an expression.
2010-04-08 Ian RomanickRemove extraneous base-class constructor calls
2010-04-08 Eric AnholtMake function bodies rely on the parameter variable...
2010-04-08 Eric AnholtMake dot() take the right number of args.
2010-04-08 Eric AnholtFix the returns of builtin functions to actually return.
2010-04-08 Eric AnholtPut function bodies under function signatures, instead...
2010-04-08 Eric AnholtClarify the types of various exec_list in ir.h
2010-04-08 Ian RomanickTreat texture rectangles as an extension that is enable...
2010-04-07 Ian RomanickAdd support for GL_ARB_draw_buffers extension
2010-04-07 Ian RomanickClean up error reporting in _mesa_glsl_process_extension
2010-04-07 Ian RomanickAdd tracking for extension based warnings
2010-04-07 Ian RomanickEmit a warning when an unknown extension is used with...
2010-04-07 Ian RomanickAdd _mesa_glsl_warning to emit warnings to the shader log
2010-04-07 Ian RomanickBegin processing #extension directive
2010-04-07 Ian RomanickUse _mesa_glsl_shader_target_name
2010-04-07 Ian RomanickAdd utility function to get the name of a shader target
2010-04-07 Ian RomanickCall glsl_type::get_instance correctly: the number...
2010-04-07 Ian RomanickEat whitespace while in the PP state
2010-04-07 Ian RomanickPartially fix comment handling in preprocessor directives.
2010-04-07 Ian RomanickAdd support for bool to ir_equal and ir_nequal constant...
2010-04-07 Ian RomanickAdd gl_ClipDistance in fragment shader
2010-04-07 Ian RomanickGenerate correct IR for do-while loops
2010-04-07 Ian RomanickProcess ast_jump_statement into ir_loop_jump
2010-04-07 Ian RomanickAdd dynamic cast for ir_loop
2010-04-07 Ian RomanickBegin tracking the nesting of loops and switch-statements
2010-04-07 Ian RomanickUse switch based on mode in ast_jump_statement::hir
2010-04-07 Ian RomanickAdd some newlines when printing ir_loop instructions
2010-04-07 Ian RomanickProcess ast_iteration_statement into ir_loop
2010-04-07 Ian RomanickAdd ir_loop_jump to represent 'break' and 'continue...
2010-04-07 Ian RomanickAdd ir_loop to represent loops
2010-04-06 Eric AnholtAdd some linebreaks in the ir_print_visitor of if state...
2010-04-06 Eric AnholtMake constant folding descend into if statements.
2010-04-06 Eric AnholtDescend down the tree in more locations in constant...
2010-04-06 Eric AnholtPerform constant folding on array indices.
2010-04-06 Eric AnholtAdd float/int conversion to ir_constant_expression...
2010-04-06 Eric AnholtHandle constant expressions using derefs of const values.
2010-04-06 Eric AnholtFold constant expressions in if conditionals.
2010-04-06 Eric AnholtAdd support for =, != to ir_constant_expresion.cpp
2010-04-06 Eric AnholtAdd ir_constant_expression.cpp support for <, >, <...
2010-04-06 Eric AnholtAdd a constant folding optimization pass.
next