summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi
Commit message (Collapse)AuthorAgeFilesLines
* tgsi: Numerical label before an instruction is optional.Michal Krol2008-07-151-5/+10
|
* tgsi: fix bug in execution of loops inside of conditionals.Brian Paul2008-07-141-1/+2
| | | | Fixes infinite loop bug.
* tgsi: Parse destination operand modulate modifier.Michal Krol2008-07-132-24/+42
|
* tgsi: Parse extended source register modifiers.Michal Krol2008-07-131-1/+126
|
* tgsi: Parse _SAT and _SAT opcode suffix.Michal Krol2008-07-132-2/+8
|
* tgsi: Parse IMM statements.Michal Krol2008-07-131-1/+110
|
* tgsi: Parse texture instructions correctly.Michal Krol2008-07-131-121/+151
|
* tgsi: Fix instruction operand counts.Michal Krol2008-07-131-104/+104
|
* tgsi: Fix instruction opcode parsing.Michal Krol2008-07-131-1/+1
|
* tgsi: Add missing SWZ opcode.Michal Krol2008-07-132-2/+4
|
* tgsi: Parse DCL statements.Michal Krol2008-07-131-74/+256
|
* tgsi: Remove depricated ATTRIB interpolate mode.Michal Krol2008-07-131-2/+1
|
* scons: List `util/tgsi_text.c'.Michal Krol2008-07-121-0/+1
|
* tgsi: Add tgsi_text utility module.Michal Krol2008-07-122-0/+627
| | | | | | | Translates textual shader into a binary token stream. The syntax matches the tgsi_dump module, so it's possible to simply copy-paste the shader dump and transform it back to a binary form.
* tgsi: Fix dumping of indirect addressing.Michal Krol2008-07-121-4/+6
|
* tgsi: Add missing copyright headers.Michal Krol2008-07-126-11/+166
|
* gallium: tweak printing of generic declarationsBrian Paul2008-07-081-1/+2
|
* gallium: increase TGSI interpreter's number of temp registers to 64Brian Paul2008-07-032-24/+28
| | | | | Also, clean up the definitions of the misc/extra temp regs. A few new assertions too.
* gallium: increase TGSI_EXEC_MAX_COND_NESTING, etcBrian Paul2008-07-031-3/+3
|
* gallium: replace 128 with MAX_LABELSBrian Paul2008-07-022-2/+4
|
* gallium: Handle malloc failure.José Fonseca2008-06-191-0/+8
|
* glsl: implement variable array indexesZack Rusin2008-06-121-1/+8
|
* gallium: added tgsi_is_passthrough_shader() functionBrian Paul2008-06-042-0/+87
| | | | | Checks if all instructions are of the form MOV OUT[n], IN[n] Untested at this time.
* gallium: Replace XSTDCALL by PIPE_CDECL.José Fonseca2008-06-021-29/+9
|
* tgsi: Add assertions to the new rule that when an extended swizzleMichal Krol2008-06-021-0/+8
| | | | is used, the simple swizzle must be set to identity.
* tgsi: SWZ no longer aliases to MOV.Michal Krol2008-06-022-2/+2
|
* tgsi: Fix build after TGSI declaration interface changes.Michal Krol2008-05-318-197/+52
|
* Merge branch 'gallium-tex-surfaces' into gallium-0.1Jakob Bornecrantz2008-05-302-3/+3
|\ | | | | | | | | | | Conflicts: src/gallium/drivers/i915simple/i915_context.h
| * gallium: MSVC warning fixes.José Fonseca2008-05-291-1/+1
| | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/draw/draw_pt_varray.c src/gallium/auxiliary/draw/draw_pt_varray_tmp.h src/gallium/auxiliary/draw/draw_pt_vcache.c
| * tgsi: Observe constness.José Fonseca2008-05-281-2/+2
| |
* | Merge branch 'gallium-vertex-linear' into gallium-0.1Jakob Bornecrantz2008-05-282-12/+30
|\| | | | | | | | | | | Conflicts: src/gallium/auxiliary/draw/draw_pt_varray.c
| * tgsi: export utils for dumping individual instructionsKeith Whitwell2008-05-272-12/+30
| |
* | gallium: Windows CE portability fixes.José Fonseca2008-05-281-1/+1
|/
* gallium: in drivers, make copy of tokens passed to pipe->create_vs/fs_state()Brian Paul2008-05-172-1/+45
| | | | The caller can then free the token array immediately.
* gallium: remove ^M (CR) charsBrian Paul2008-05-021-23/+23
|
* tgsi: Enable fast high precision rsqrt.Michal Krol2008-05-021-22/+0
|
* tgsi: Implement fast rsqrtf. Not tested, inactive.Keith Whitwell2008-05-023-19/+40
|
* tgsi: Do not assume IN and OUT registers are declared sequentially.Michal Krol2008-05-021-8/+7
|
* tgsi: Fix build on Win32.Michal Krol2008-05-021-2/+2
|
* tgsi: Dump destination register modulate modifier.Michal Krol2008-05-021-0/+25
|
* gallium: temporarily disable broken SSE2 code for ARL opcodeBrian2008-05-011-0/+5
|
* gallium: implement TGSI_OPCODE_EXPBrian2008-05-011-14/+15
|
* gallium: implement TGSI_OPCODE_LOGBrian2008-05-011-14/+16
|
* tgsi: remove some bogus win vs. linux crudKeith Whitwell2008-05-011-72/+46
| | | | | Pass arguments properly in linux now. Still need to change this to use a single calling convention on both platforms.
* rtasm: fix labels after (not so) recent change to allow dynamic fn growthKeith Whitwell2008-05-011-2/+2
| | | | | Using char * for labels doesn't work if you realloc the function during assembly and free the old storage...
* tgsi: restore HIGH_PRECISION settingKeith Whitwell2008-05-011-1/+1
|
* tgsi: add some const qualifiers to immediate pointersKeith Whitwell2008-05-011-2/+2
|
* tgsi: use EBX everywhere, be sure to push/pop itKeith Whitwell2008-05-011-8/+10
|
* tgsi: use x86_fn_arg instead of get_argument() -- it knows about push/pops ↵Keith Whitwell2008-05-011-29/+34
| | | | to the stack
* tgsi: use ESI instead of EBX on non-win32 platformsKeith Whitwell2008-05-011-7/+7
|