summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Update comments.Michal Krol2007-10-281-2/+0
|
* Replace supported_formats with is_format_supported interface.Michal Krol2007-10-2810-98/+75
| | | | | | | | | | | The old supported_formats interface returned a list of formats supported by a pipe/winsys implementation. This was reasonable when gallium had a fixed list of predefined format. Now things has changed and the definition of PIPE_FORMAT is more flexible. The new shiny is_format_supported interface gets PIPE_FORMAT as an argument and returns a boolean whether this particular format is supported.
* Use FREE and MALLOC instead of free and malloc.Michal Krol2007-10-283-3/+5
|
* Rework sse-utility function calls.Michal Krol2007-10-281-154/+111
|
* Declare temporaries in a more compact fashion.michal2007-10-281-61/+61
| | | | | | | | | | | The following declarations: DCL TEMP[0] DCL TEMP[1] DCL TEMP[2] DCL TEMP[4] become: DCL TEMP[0..2] DCL TEMP[4]
* Declare temporaries in a more compact fashion.michal2007-10-281-55/+61
| | | | | | | | | | | The following declarations: DCL TEMP[0] DCL TEMP[1] DCL TEMP[2] DCL TEMP[4] become: DCL TEMP[0..2] DCL TEMP[4]
* Control FS TGSI dumping with GALLIUM_DUMP_FS env variable.michal2007-10-283-0/+9
|
* Fix newlines.michal2007-10-281-10/+10
|
* Use FREE instead of free. Fix newlines.michal2007-10-2712-31/+37
|
* Enable SSE path.michal2007-10-271-2/+2
|
* Use PIPE_FORMAT in state tracker.michal2007-10-274-22/+192
| | | | | Fix PIPE_FORMAT field encoding. Re-implement st_get_format_info.
* Refactor supported format queries.michal2007-10-271-67/+73
|
* Respect use_sse flag.michal2007-10-272-4/+3
|
* Fix SSE bug.michal2007-10-271-2/+1
|
* Add #ifs.michal2007-10-271-1/+4
|
* vertex_element::src_format needs 32 bits.michal2007-10-271-1/+1
|
* Respect use_sse flag.michal2007-10-271-12/+15
|
* Remove PIPE_FORMAT_COUNT references.michal2007-10-271-2/+2
|
* Enable SSE2 for fragment shaders.michal2007-10-274-17/+29
|
* Enable SSE2 for vertex shaders.michal2007-10-272-12/+12
|
* Fix YCBCR macro.michal2007-10-271-224/+224
| | | | Fix line endings.
* Fix alignment problems.michal2007-10-272-28/+37
| | | | | Remove NOP opcode. TEX opcode returns solid white (a hack for D3D state tracker).
* Remove GL dependencies.michal2007-10-271-21/+21
|
* Define destroy method called by softpipe's destructor.michal2007-10-2712-0/+78
|
* Silence compiler warnings.michal2007-10-271-5/+5
|
* Silence compiler warnings.michal2007-10-271-3/+3
|
* Call quad stage destructors.michal2007-10-271-0/+12
|
* Remove llvm and sse2 dependencies.michal2007-10-271-10/+0
|
* Move format definitions from p_defines.h to p_format.h.michal2007-10-272-92/+228
| | | | | PIPE_FORMAT is not an ordinary enum -- it encodes its format description in the value that defines it.
* Add sse2_program to draw_vertex_shader.michal2007-10-271-1/+2
|
* Silence compiler warnings.michal2007-10-271-1/+1
|
* Remove llvm dependencies.michal2007-10-271-4/+3
|
* New comments, replace //-style with /* */Brian2007-10-272-8/+51
|
* indentation fixesBrian2007-10-271-26/+26
|
* s/GLbitfield/uint/Brian2007-10-271-2/+2
|
* remove #define MESA stuffBrian2007-10-271-5/+0
|
* s/256/TGSI_EXEC_NUM_IMMEDIATES/Brian2007-10-271-1/+1
|
* indentation fixesBrian2007-10-271-20/+20
|
* Comments about texture instructions and the src regsBrian2007-10-272-11/+22
|
* Remove remnants of softpipe_surface.Brian2007-10-2710-182/+47
| | | | | This is the last of the clean-up following the change which moved surface allocation to the winsys layer.
* ObsoleteBrian2007-10-272-11/+0
|
* Move mesa_to_tgsi.[ch] to state_trackerBrian2007-10-278-16/+74
|
* Move mesa_to_tgsi.[ch] into state tracker.Brian2007-10-272-0/+0
|
* Fix up handling of immediate values for TGSI shaders.Brian2007-10-263-21/+9
| | | | Still disabled pending LLVM updates.
* turn off debug outputBrian2007-10-261-1/+1
|
* Re-implement GLSL texture sampler variables.Brian2007-10-2631-106/+262
| | | | | | | | | | GLSL sampler variables indicate which texture unit to use for TEX instructions. Previously, this was baked into the fragment/vertex program and couldn't be readily changed once set. Now, SamplerUnits[] array indicates which texture unit is to be used for each sampler variable. These values are set with glUniform1i(). This is extra state that must be passed to the fragment/vertex program executor at runtime.
* Hold a stack of temporaries so that we can redeclare themZack Rusin2007-10-263-1/+27
| | | | for all defined functions. Fixes crashes in function calls.
* convert OPCODE_END -> TGSI_OPCODE_RETBrian2007-10-261-1/+1
|
* if we hit RET w/ empty call stack, haltBrian2007-10-261-7/+7
|
* Initial support for immediate values in TGSI programs.Brian2007-10-264-7/+74
| | | | | These can be evaluated at compile time. Code disabled pending clarifications of TGSI immediate data structures.