summaryrefslogtreecommitdiffstats
path: root/src/mesa/shader/slang/slang_codegen.c
Commit message (Expand)AuthorAgeFilesLines
* mesa: Silence compiler warning on windows.Michal Krol2008-07-241-1/+1
* mesa: glsl: mark constructor params as constBrian Paul2008-07-231-1/+2
* mesa: glsl: rework swizzle storage handlingBrian Paul2008-07-221-2/+22
* mesa: glsl: implement constructor functions for user-defined typesBrian Paul2008-07-221-0/+166
* mesa: fix +=, -=, etc. operatorsBrian Paul2008-07-211-4/+4
* mesa: assorted glsl uniform/attribute fixesBrian Paul2008-07-211-2/+19
* mesa: remove debug codeBrian Paul2008-07-211-1/+0
* mesa: glsl: various writemask/swizzle improvements and clean-upsBrian Paul2008-07-181-18/+44
* mesa: rework array/struct addressing code.Brian Paul2008-07-181-50/+104
* mesa: fix some function inlining bugsBrian Paul2008-07-151-25/+16
* mesa: Silence compiler warnings on Windows.Michal Krol2008-07-151-1/+1
* mesa: fix bug/failure in recursive function inliningBrian Paul2008-07-081-6/+56
* mesa: fix array storage allocation bugBrian Paul2008-07-031-0/+8
* mesa: fix a GLSL vector subscript/writemask bugBrian Paul2008-07-011-47/+90
* mesa: move some functionsBrian Paul2008-07-011-99/+99
* mesa: better function inlining in the presence of 'return' statementsBrian Paul2008-07-011-23/+105
* fix incorrect sampler numbering/indexing.Brian Paul2008-05-201-2/+1
* fix-up inlined/non-inlined function inconsistenciesBrian Paul2008-05-141-8/+8
* rewrite some of the mat*mat, mat*vec intrinsicsBrian Paul2008-05-141-44/+0
* mesa: minor bug fixes, null ptr checks, dead code removalBrian Paul2008-05-141-11/+8
* mesa: fix (harmless?) assignment in assertKeith Whitwell2008-03-131-1/+1
* Re-implement GLSL texture sampler variables.Brian2007-10-261-3/+12
* Implement gl_PointCoord attribute for GLSL fragment shaders.Brian2007-10-241-1/+5
* Fix function call bug 11731. Also, fix up IR_CALL/IR_FUNC confusion.Brian2007-07-261-8/+19
* generate error upon writing to varying var in fragment program (bug 11733)Brian2007-07-261-5/+8
* fix swizzle-related bug 11534Brian2007-07-121-2/+3
* Be more consistant with paths in #includes. Eventually, eliminate a bunch of...Brian2007-07-041-7/+7
* add code for stpq, rgba writemasks in make_writemask(), bug 11404Brian2007-07-031-0/+8
* comment about fixing uniform structsBrian2007-05-141-0/+13
* user-declared uniform structs not supported yet (see bug 10908)Brian2007-05-111-3/+16
* Rewrite of slang_inline_asm_function() to do full parameter/argument substitu...Brian2007-05-011-31/+64
* fix double const, move an assertionKarl Schultze2007-04-241-2/+2
* Remove all the USE_MEMPOOL debug code.Brian2007-04-211-41/+6
* Use new memory pool allocator. Lots of debug code still in place...Brian2007-04-211-1/+27
* remove invalid assertionBrian2007-04-191-1/+0
* fix crash when program has invalid structure fieldBrian2007-04-191-3/+4
* fix an uninitialized variable and a warningBrian2007-04-181-2/+2
* record proper datatypes for uniforms/samplersBrian2007-04-181-6/+4
* Start fixing some issues with uniform variables and their types.Brian2007-04-181-2/+5
* Added sanity checking in _slang_sizeof_type_specifier() to be sure sizes are ...Brian2007-04-121-27/+68
* fix/work-around allocation bugs for non-square matricesBrian2007-04-101-3/+6
* NULL ptr checkBrian2007-04-091-1/+1
* support for GLSL 1.20 non-square matricesBrian2007-04-081-0/+9
* fix scoping mistake in previous commit that checked for writable LHSsBrian2007-03-311-1/+1
* check that LHS of assignment is writableBrian2007-03-301-1/+22
* Handle logical NOT and XOR without library functions. Results in much tighte...Brian2007-03-281-13/+48
* don't generate IR_BREAK_IF_FALSEBrian2007-03-281-10/+17
* simplify, clean-up break/cont codeBrian2007-03-281-8/+10
* added missing returns after slang_info_log_error() callsBrian2007-03-281-0/+2
* check that if/while/do-while condition is boolean or scalarBrian2007-03-281-0/+34