Initial implementation of MESA_texture_array
[mesa.git] / src / mesa / shader /
2007-05-16 Ian RomanickInitial implementation of MESA_texture_array
2007-05-14 Briancomment about fixing uniform structs
2007-05-11 Brianuser-declared uniform structs not supported yet (see...
2007-05-11 Briandon't ignore return value of _slang_codegen_global_vari...
2007-05-10 Brianregenerated
2007-05-10 BrianImplement exp() in terms of __asm float_power. Fix...
2007-05-09 Oliver McFaddenMerge branch 'master' of git://anongit.freedesktop...
2007-05-09 BrianCheck that texture units/samplers specified with glUnif...
2007-05-03 BrianResuscitate some of the DDX,DDY code.
2007-05-03 Brianfix some DDX,DDY mix-ups
2007-05-01 Brianregenerated
2007-05-01 Brianimplement acos(), asin(), atan()
2007-05-01 BrianRewrite of slang_inline_asm_function() to do full param...
2007-04-28 Brianfix GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB bug (10787)
2007-04-27 Brianasin(), acos(), atan() just return 0.5 for now to avoid...
2007-04-26 BrianAdded error check that all varying vars needed by the...
2007-04-24 Karl Schultzassorted fixes for Windows/VC8
2007-04-24 Karl Schultzefix double const, move an assertion
2007-04-21 BrianRemove all the USE_MEMPOOL debug code.
2007-04-21 BrianUse new memory pool allocator. Lots of debug code still...
2007-04-21 Briancall grammar_alloc_free() to fix memleaks
2007-04-21 Brianremove more unused vars, assertions
2007-04-21 Brianremove unused vars, assertions
2007-04-21 BrianMemory pool manager.
2007-04-21 Brianfix instruction comment code
2007-04-21 Briananother bit of debug code
2007-04-21 Brianfree subroutine array (fix mem leak)
2007-04-21 Briannew varnames in slang_operation_insert()
2007-04-21 Brianfix memleak in slang_operation_insert()
2007-04-21 Brianfree shProg->Attributes in _mesa_free_shader_program_data()
2007-04-21 Brianmove allocation of shProg->Attributes earlier in function
2007-04-19 BrianFix valgrind problem caused by reading text[-1].
2007-04-19 Brianremove invalid assertion
2007-04-19 Brianfix crash when program has invalid structure field
2007-04-19 Brianinit A.curFuncEndLabel = NULL
2007-04-19 Brianfix an uninitialized variable and a warning
2007-04-18 Briancomments, assertions
2007-04-18 Briannew comments
2007-04-18 Brianrecord proper datatypes for uniforms/samplers
2007-04-18 Brianadded _slang_gltype_from_specifier()
2007-04-18 BrianStart fixing some issues with uniform variables and...
2007-04-18 BrianFix some bugs related to querying active uniforms.
2007-04-18 Brianfix error strings, add a sanity check
2007-04-18 BrianRemove bad assertions, decrement NumShaders in _mesa_de...
2007-04-18 Brians/GL_SHADER_PROGRAM/GL_SHADER_PROGRAM_MESA/ (a Mesa...
2007-04-18 BrianReplace _mesa_parameter_longest_name() with _mesa_longe...
2007-04-18 Briancall ProgramStringNotify() after linking
2007-04-17 Brianregenerated
2007-04-17 Brianfix/simplify some texture functions
2007-04-17 Brianmore matrix function updates
2007-04-16 Brianneed to clamp MAD for linear fog
2007-04-16 BrianFix some assertions that could occur when an error...
2007-04-14 Brianimplement shadow2DRect functions
2007-04-12 Briandisable debug printfs
2007-04-12 BrianAdded sanity checking in _slang_sizeof_type_specifier...
2007-04-12 Brianuse _mesa_clear_shader_program_data()
2007-04-12 BrianNew _mesa_reference_shader/program() function to consol...
2007-04-11 Brianregenerated
2007-04-11 Briancheckpoint: updating non-square matrix constructors...
2007-04-11 Brianmove/fix texture sampling funcs
2007-04-11 Brians/Shadow/SHADOW/
2007-04-11 Brianfix invalid error detection problem in _mesa_bind_attri...
2007-04-11 Brianfix/work-around allocation bugs for non-square matrices
2007-04-11 Brianupdate SLANG version test
2007-04-10 Michel DänzerAdd missing generated file.
2007-04-10 BrianNULL ptr check
2007-04-10 Brianplug in GLSL 1.20 unit
2007-04-10 Brianundo a debug/test change
2007-04-08 Briansupport for GLSL 1.20 non-square matrices
2007-03-31 Brianalways emit BGN/ENDSUB, for now anyway
2007-03-31 Brianfix scoping mistake in previous commit that checked...
2007-03-30 Briancheck that LHS of assignment is writable
2007-03-30 Eric AnholtMerge branch 'crestline-qa', adding support for the...
2007-03-28 Briancond code fix
2007-03-28 Brianfix cond code swizzle bug
2007-03-28 BrianHandle logical NOT and XOR without library functions...
2007-03-28 Brianoptimization for the emit_not() function
2007-03-28 Brianremove IR_BREAK_IF_FALSE
2007-03-28 Briandon't generate IR_BREAK_IF_FALSE
2007-03-28 BrianGet rid of IR_CONT_IF_FALSE
2007-03-28 BrianGet rid of BRK0, BRK1, CONT0, CONT1 instructions.
2007-03-28 BrianDon't emit OPCODE_CONT0/1, BRK0/1 instructions, clean...
2007-03-28 Briansimplify, clean-up break/cont code
2007-03-28 Brianadded some null ptr checks to handle error recovery
2007-03-28 BrianUse constant_to_src_reg() to simplify some code
2007-03-28 Brianadded missing returns after slang_info_log_error()...
2007-03-28 BrianFix, clean-up code related to comparisons, condition...
2007-03-28 Brianprint condcodes if DEBUG_PROG
2007-03-28 Brianexpose _mesa_condcode_string(), fix some printing
2007-03-28 Briancheck that if/while/do-while condition is boolean or...
2007-03-27 BrianImplement true CAL/RET subroutines. Some optimizations...
2007-03-27 Brianfix another pc off-by one
2007-03-27 Brianadded _slang_label_new_unique()
2007-03-27 Brianfix some printing issues related to subroutines
2007-03-27 Brianfix off by one error in OPCODE_RET
2007-03-27 Zou Nan haiMerge branch 'master' of git+ssh://znh@git.freedesktop...
2007-03-27 Brians/SUB/BGNSUB/
2007-03-27 BrianCheckpoint: implementing true CAL/RET instructions...
2007-03-26 BrianGet rid of IR_JUMP and related code.
2007-03-26 Brianspecial case RET
next