Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-29 | Add SSE dump facilities. | Michal Krol | |
Wrap x86_, sse_ and sse2 rtasm calls in emit_ calls. Those emit_ calls, if required, dump instructions to stdout. SSE dumping disabled by default. | |||
2007-10-29 | Code re-org. Add comments. | Michal Krol | |
2007-10-29 | Implement RET opcode. | Michal Krol | |
2007-10-29 | Remove TGSI_INTERPOLATE_ATTRIB. | Michal Krol | |
2007-10-28 | Remove unused static functions. | Michal Krol | |
2007-10-28 | Rework sse-utility function calls. | Michal Krol | |
2007-10-27 | Fix alignment problems. | michal | |
Remove NOP opcode. TEX opcode returns solid white (a hack for D3D state tracker). | |||
2007-10-27 | Remove GL dependencies. | michal | |
2007-10-27 | New comments, replace //-style with /* */ | Brian | |
2007-10-27 | indentation fixes | Brian | |
2007-10-27 | s/GLbitfield/uint/ | Brian | |
2007-10-27 | remove #define MESA stuff | Brian | |
2007-10-27 | s/256/TGSI_EXEC_NUM_IMMEDIATES/ | Brian | |
2007-10-27 | indentation fixes | Brian | |
2007-10-27 | Comments about texture instructions and the src regs | Brian | |
2007-10-27 | Obsolete | Brian | |
2007-10-27 | Move mesa_to_tgsi.[ch] into state tracker. | Brian | |
2007-10-26 | Fix up handling of immediate values for TGSI shaders. | Brian | |
Still disabled pending LLVM updates. | |||
2007-10-26 | Re-implement GLSL texture sampler variables. | Brian | |
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. | |||
2007-10-26 | convert OPCODE_END -> TGSI_OPCODE_RET | Brian | |
2007-10-26 | if we hit RET w/ empty call stack, halt | Brian | |
2007-10-26 | Initial support for immediate values in TGSI programs. | Brian | |
These can be evaluated at compile time. Code disabled pending clarifications of TGSI immediate data structures. | |||
2007-10-26 | Fix swizzle fetching in tgsi_util_get_full_src_register_extswizzle. Shorten | Zack Rusin | |
the swizzle coding in LLVM compilation using it and fix some warnings. | |||
2007-10-25 | tex comments | Brian | |
2007-10-25 | added some comments | Brian | |
2007-10-25 | update TILE_TOP/BOTTOM_* values to match softpipe | Brian | |
2007-10-25 | s/GLfloat/float/, s/GLint/int/, etc | Brian | |
2007-10-24 | print CAL label | Brian | |
2007-10-24 | fix bug in RET code | Brian | |
2007-10-22 | Finish unifying the surface and texture tile caches. | Brian | |
2007-10-20 | added case for TGSI_OPCODE_END | Brian | |
2007-10-18 | added const qualifiers | Brian | |
2007-10-18 | Corrected the file permissions in src/mesa/pipe. | Oliver McFadden | |
2007-10-15 | fix logic for printing extended swizzles | Brian | |
2007-10-12 | added code to print extended swizzles | Brian | |
2007-10-12 | change exec_kilp() to only touch lowest four bits in kilmask | Brian | |
2007-10-10 | Merge tgsi_mesa_compile_fp_program() and tgsi_mesa_compile_vp_program() into ↵ | Brian | |
tgsi_translate_mesa_program(). | |||
2007-10-09 | start on a unified vertex/fragment program translation function | Brian | |
2007-10-09 | Generate DCLs for temporaries. | Brian | |
2007-10-09 | Finish up decls for packed fragment program outputs. | Brian | |
2007-10-09 | Pack fragment program outputs to be consistant with vertex programs. | Brian | |
Previously, output[0] was always Z and output[1] was color. Now output[0] will be color if Z is not written. In shade_quad() use the semantic info to determine which quantity is in which output slot. | |||
2007-10-09 | update some comments | Brian | |
2007-10-09 | More work on flow control for CAL/RET. | Brian | |
2007-10-09 | New ATTRIB interpolation type for vertex program inputs/declarations. | Brian | |
2007-10-09 | Don't emit semantic info for vertex program inputs. | Brian | |
2007-10-03 | use different temps in exec_tex() for bias | Brian | |
2007-10-03 | updated comments | Brian | |
2007-10-03 | fix eq/neq bugs | Brian | |
2007-10-03 | fix f/u mix-up in micro_trunc() | Brian | |
2007-10-03 | move TEX code into exec_tex() | Brian | |