Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-04 | r300g: only check for an empty shader if there are no compile errors | Marek Olšák | |
2010-09-04 | r300/compiler: add new compiler parameter max_alu_insts | Marek Olšák | |
2010-09-04 | r300/compiler: put emulate_loop_state in radeon_compiler | Marek Olšák | |
2010-09-04 | ir_reader: Run ir_validate on the generated IR. | Kenneth Graunke | |
It's just too easy to get something wrong in hand-written IR. | |||
2010-09-04 | ir_reader: Emit global variables at the top of the instruction list. | Kenneth Graunke | |
Since functions are emitted when scanning for prototypes, functions always come first, even if the original IR listed the variable declarations first. Fixes an ir_validate error (to be turned on in the next commit). | |||
2010-09-04 | ir_reader: Drop support for reading the old assignment format. | Kenneth Graunke | |
2010-09-04 | glsl: Regenerate autogenerated file builtin_function.cpp. | Kenneth Graunke | |
2010-09-04 | glsl/builtins: Convert assignments to new format (with write mask). | Kenneth Graunke | |
2010-09-04 | ir_reader: Read the new assignment format (with write mask). | Kenneth Graunke | |
This preserves the ability to read the old format, for momentary compatibility with all the existing IR implementations of built-ins. | |||
2010-09-04 | ir_reader: Track the current function and report it in error messages. | Kenneth Graunke | |
2010-09-04 | glsl/builtins: Actually print the info log if reading a builtin failed. | Kenneth Graunke | |
2010-09-04 | nvfx: consolidate tiny files | Luca Barbieri | |
We probably want to reorganize the remaining files too, but that's for later, maybe. | |||
2010-09-04 | mesa/st: add missing _mesa_set_fetch_functions in st_get_tex_image | Luca Barbieri | |
Fixes piglit fdo25614-genmipmap. | |||
2010-09-04 | nvfx: fix vp DP2 | Luca Barbieri | |
2010-09-04 | nvfx: implement fp SSG properly | Luca Barbieri | |
2010-09-04 | nvfx: don't claim we support preds since the driver doesn't | Luca Barbieri | |
2010-09-04 | nv40: support all 10 texcoords | Luca Barbieri | |
2010-09-04 | nvfx: add missing context init | Luca Barbieri | |
2010-09-04 | nvfx: tidy up state_emit | Luca Barbieri | |
2010-09-04 | nvfx: support all coord conventions in hardware | Luca Barbieri | |
2010-09-04 | nvfx: add missing pushbuffer space check | Luca Barbieri | |
2010-09-04 | nvfx: support all possible vs consts | Luca Barbieri | |
We were incorrectly setting a register that limited the range of constants accessible via indirect addressing. Setting it correctly, we can address all the constants the GPU supports. | |||
2010-09-04 | nvfx: set magic bit to round NPOT mipmap sizes down and not up | Luca Barbieri | |
Does any API even use rounding-up? | |||
2010-09-04 | nvfx: allow nested blitter usage, fixing bug in clear | Luca Barbieri | |
2010-09-03 | galahad: do map/unmap counting for resources | Brian Paul | |
2010-09-03 | libgl-xlib: enable galahad support | Brian Paul | |
If the GALLIUM_GALAHAD env var is 1 we'll wrap the regular driver with the galahad validation driver. | |||
2010-09-03 | scons: added galahad to driver list | Brian Paul | |
2010-09-03 | mesa: also build galahad driver | Brian Paul | |
2010-09-03 | exec_list: replace class with struct | Brian Paul | |
To match the definition below. | |||
2010-09-03 | mesa: fix up a comment | Brian Paul | |
2010-09-03 | st/glx: added some comments | Brian Paul | |
2010-09-03 | nvfx: implement LIT in fp | Luca Barbieri | |
2010-09-03 | glsl2: Use as_constant some places instead of constant_expression_value | Ian Romanick | |
The places where constant_expression_value are still used in loop analysis are places where a new expression tree is created and constant folding won't have happened. This is used, for example, when we try to determine the maximal loop iteration count. Based on review comments by Eric. "...rely on constant folding to have done its job, instead of going all through the subtree again when it wasn't a constant." | |||
2010-09-03 | glsl2: Allow copy / constant propagation into array indices | Ian Romanick | |
2010-09-03 | glsl2: Add module to perform simple loop unrolling | Ian Romanick | |
2010-09-03 | glsl2: Track the number of ir_loop_jump instructions that are in a loop | Ian Romanick | |
2010-09-03 | ir_expression: Add static operator_string method | Ian Romanick | |
I've used this in quite a few debug commits that never reached an up-stream tree. | |||
2010-09-03 | exec_node: Add insert_before that inserts an entire list | Ian Romanick | |
2010-09-03 | glsl2: Eliminate zero-iteration loops | Ian Romanick | |
2010-09-03 | glsl2: Perform initial bits of loop analysis during compilation | Ian Romanick | |
2010-09-03 | glsl2: Add module to suss out loop control variables from loop analysis data | Ian Romanick | |
This is the next step on the road to loop unrolling | |||
2010-09-03 | glsl2: Add module to analyze variables used in loops | Ian Romanick | |
This is the first step eventually leading to loop unrolling. | |||
2010-09-03 | ir_to_mesa: Handle loops with loop controls set | Ian Romanick | |
The downside of our talloc usage is that we can't really make static (i.e., not created with new) instances of our IR types. This leads to a lot of unnecessary dynamic allocation in this patch. | |||
2010-09-03 | ir_validate: Validate loop control fields in ir_loop | Ian Romanick | |
2010-09-03 | glsl2: Add cmp field to ir_loop | Ian Romanick | |
This reprents the type of comparison between the loop induction variable and the loop termination value. | |||
2010-09-03 | glsl2: Set a flag when visiting the assignee of an assignment | Ian Romanick | |
2010-09-03 | exec_list: Add pop_head | Ian Romanick | |
2010-09-03 | ir_print_visitor: Print empty else blocks more compactly | Ian Romanick | |
2010-09-03 | nvfx: fix division by zero in vp-ignore-input | Luca Barbieri | |
2010-09-03 | nvfx: report correct max lodbias | Luca Barbieri | |
Fixes piglit lodbias |