aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/shader
Commit message (Collapse)AuthorAgeFilesLines
* update texture1D functionsBrian2007-01-082-96/+98
|
* Implement projective texture sampling, 3D textures. Disable some debug output.Brian2007-01-087-119/+143
|
* Move some code around, add some comments.Brian2007-01-081-242/+256
|
* Move storage allocation functions from slang_emit.c to slang_codegen.cBrian2007-01-083-347/+288
|
* checkpoint: more work on variable/storage allocationBrian2007-01-081-44/+40
|
* Checkpoint: re-org of (global) variable allocation code. More to come...Brian2007-01-084-140/+184
|
* Checkpoint glsl compiler work: sampler uniforms now implemented, linked ↵Brian2007-01-0512-284/+359
| | | | properly.
* added PROGRAM_SAMPLERBrian2007-01-051-0/+2
|
* added Sampler field to prog_instruction structBrian2007-01-051-0/+6
|
* added _mesa_add_sampler()Brian2007-01-052-5/+27
|
* update TexturesUsed[] in slang_update_inputs_outputs()Brian2007-01-041-2/+0
|
* update TexturesUsed[] in slang_update_inputs_outputs()Brian2007-01-041-0/+10
|
* compute InputsRead/OutputsWritten with slang_update_inputs_outputs()Brian2007-01-042-20/+31
|
* move TexturesUsed[] into gl_program since vertex programs/shaders can use ↵Brian2007-01-044-5/+5
| | | | textures nowadays
* minor formatting fixBrian2007-01-041-1/+0
|
* added texture attribs in slang_find_input()Brian2007-01-041-0/+4
|
* initial code to get texture sampling limping alongBrian2007-01-046-105/+177
|
* temporary disable some memory deallocations to work around a memory ↵Brian2007-01-041-0/+3
| | | | corruption bug
* finish some loose ends in _mesa_uniform()Brian2007-01-041-13/+44
|
* Fix some incorrect GL error values. Reorganize _mesa_compile_shader() code.Brian2007-01-044-65/+81
|
* fix typosBrian2006-12-221-2/+2
|
* implement unary +, -Brian2006-12-222-21/+19
|
* chmod a-xBrian2006-12-219-0/+0
|
* checkpoint: pre/post incr/decr operatorsBrian2006-12-212-195/+208
|
* comment about uniformsBrian2006-12-211-0/+4
|
* checkpoint: rewrite vec/mat productsBrian2006-12-212-277/+287
|
* fix typosBrian2006-12-211-2/+2
|
* added IR_NEG for negationBrian2006-12-213-1/+40
|
* checkpoint: matrix/float, unary negation rewriteBrian2006-12-212-579/+709
|
* checkpoint: ivec/int and mat/mat operationsBrian2006-12-212-465/+613
|
* checkpoint: more basic math rewrittingBrian2006-12-212-518/+593
|
* checkpoint: re-org assignment operator functionsBrian2006-12-202-427/+541
|
* checkpoint: more basic math operator re-orgBrian2006-12-202-508/+530
|
* Checkpoing: re-organization of basic arithmetic functions.Brian2006-12-202-610/+667
|
* Uniform matrix support.Brian2006-12-207-587/+638
| | | | | | | Implement _mesa_uniform_matrix() Support for program parameters/uniforms with more than 4 elements. Store 4x4 matrices in column-major order in registers. Update mat mul built-in functions accordingly.
* added _mesa_print_parameter_list()Brian2006-12-202-8/+17
|
* New IR_COND node for evaluating conditional expressions (for if/while/for).Brian2006-12-203-26/+64
|
* use cast wrappers for sanity checkingBrian2006-12-201-6/+23
|
* code re-orgBrian2006-12-201-158/+155
|
* Fix shader object reference counting and hash table deallocation.Brian2006-12-202-8/+66
|
* Clean-up and re-org of the main GLSL object types.Brian2006-12-196-239/+269
| | | | | | | Use the gl_shader struct as it should be. Renamed gl_linked_program to gl_shader_program. Store both shaders and programs in the same hash table and use the Type field to distinguish them.
* Overhaul of GLSL API functions, dispatching, etc.Brian2006-12-194-989/+656
|
* Massive re-org of GLSL-related API functions.Brian2006-12-194-3902/+0
| | | | | | | Added new GLSL functions to struct dd_function_table. main/shaders.c calls GLSL functions through the dd_function_table. shader/shader_api.c implements the API functions. Other assorted changes, fixes everywhere else.
* check for null Parameters ptr in _mesa_clone_program()Brian2006-12-191-2/+4
|
* lots of clean-up and re-orgBrian2006-12-191-336/+405
|
* additional error checkingBrian2006-12-191-0/+7
|
* new error msgBrian2006-12-191-1/+1
|
* rewrite +=, -= etc for floatsBrian2006-12-192-527/+534
|
* Implement array indexing of simple vec2/3/4 types. A bit of a hack for now...Brian2006-12-181-5/+28
|
* Check for inst->CondUpdate, print .C suffix.Brian2006-12-181-4/+3
|