summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/python/retrace/interpreter.py
AgeCommit message (Collapse)Author
2010-02-14progs/gallium/python: New home for python statetracker scripts.José Fonseca
2010-02-10gallium: adapt state trackers to stencil ref changeRoland Scheidegger
2010-02-09Merge branch 'gallium-nopointsizeminmax'Roland Scheidegger
Conflicts: src/gallium/drivers/nv10/nv10_state.c src/gallium/drivers/nv20/nv20_state.c src/gallium/drivers/nv50/nv50_program.c
2010-02-05gallium/python: support two more formats in retrace dumpsZack Rusin
dump PIPE_FORMAT_R8G8B8A8_UNORM and PIPE_FORMAT_R16G16B16_SNORM formats.
2010-02-03gallium: clean up point sprite rasterizer stateRoland Scheidegger
Don't need sprite coord origin per coord. Also, don't need separate sprite enable bit - if all coords have it diabled, then there are no point sprites (technically, there's a distinction in pre-GL3, but it only differs in having more leniency in clamping to max size, something the state tracker would need to handle and the hardware won't bother anyway). Also, use packed field for the per-coord enables. All in all, should save 3 dwords in rasterizer state (from 10 down to 7).
2010-01-15Merge branch 'gallium-noconstbuf'Roland Scheidegger
Conflicts: src/gallium/drivers/softpipe/sp_draw_arrays.c src/mesa/state_tracker/st_draw_feedback.c
2009-12-28python/retrace: Dump only the specified image rectangles.José Fonseca
2009-12-26python: Update python state tracker and samples for recent interface changes.José Fonseca
2009-12-23gallium: adapt state trackers etc. to pipe_constant_buffer removalRoland Scheidegger
2009-12-19gallium: fix up drivers for edgeflag changesRoland Scheidegger
several drivers which chose to ignore edgeflags might require some more work, while edgeflags never worked there they might now crash.
2009-12-04Merge branch 'gallium-noblocks'Roland Scheidegger
Conflicts: src/gallium/state_trackers/xorg/xorg_exa.c
2009-12-01python: Update for renamed sampler/texture state setters.Michal Krol
2009-11-30fixups for interface changes (mostly state trackers)Roland Scheidegger
2009-11-26gallium: fix more statetrackers/drivers for not using texture ↵Roland Scheidegger
width/height/depth arrays
2009-11-03python/retrace: Cope with null constant buffers.José Fonseca
2009-11-03python/retrace: Add missing colon.José Fonseca
2009-10-02gallium: Preparations for adding more PIPE_TRANSFER_* usage flags.Michel Dänzer
Always test for PIPE_TRANSFER_READ/WRITE using the bit-wise and operator, and add a pipe_transfer_buffer_flags() helper for getting the buffer usage flags corresponding to them.
2009-07-16python/retrace: Process the call no passed to --to option inclusively.José Fonseca
2009-07-16python/retrace: Dump the surface copy contents.José Fonseca
2009-07-16python/retrace: Flush stdout before calling the pipe driver.José Fonseca
So that messages are in sync with stderr.
2009-07-15python/retrace: Interpret surface_copy.José Fonseca
2009-06-11python/retrace: Show the contents of the depth/stencil and surfaces ↵José Fonseca
before/after transfers.
2009-06-11python/retrace: Interpret is_texture_referenced/is_buffer_referenced.José Fonseca
2009-04-17python/retrace: Rename module as it conflicts with a builtin module.José Fonseca
And there is no way to override a builtin module... sigh
2009-04-08python/retrace: Try to cope with failures creating textures.José Fonseca
2009-04-08python/retrace: Allow to specify the range of calls of interest.José Fonseca
2009-04-08python/retrace: Handle recent traces.José Fonseca
Try to keep backwards compatability with old traces as much as possible.
2009-04-04gallium: Clean up driver clear() interface.Michel Dänzer
Only allows clearing currently bound buffers, but colour and depth/stencil in a single call.
2009-03-30python: Hide away the surface usage flags.José Fonseca
Surfaces are now by definition GPU views. So CPU access flags don't make any sense when creating a surface. For now we are forcing surfaces to be GPU read/write, but that will go away soon.
2009-03-25python: Show call no in image window.José Fonseca
2009-03-25python/retrace: Use the call no when dumping images.José Fonseca
To make it easy associate images with the calls.
2009-03-25python/trace: Control the interpreter from command line options.José Fonseca
2009-03-25python: Allow to dump all images to disk.José Fonseca
2009-03-25python: s/pitch/stride/José Fonseca
2009-03-25python: s/num_cbufs/nr_cbufs/José Fonseca
2009-02-20python: More efficient blits from surfaces.José Fonseca
C code instead of interpreted python code.
2009-02-20python/interpreter: Don't do unnecessary updates.José Fonseca
2009-02-20python/retrace: Verbosity level.José Fonseca
2009-02-20python/retrace: Cope with python 2.4.xJosé Fonseca
2008-12-09python/retrace: Dump indices too.José Fonseca
2008-12-08python/retrace: Dump vertex buffer contents.José Fonseca
2008-11-20python/retrace: Dump constants.José Fonseca
2008-11-19python/retrace: Ignore irrelevant calls.José Fonseca
2008-11-19python/retrace: Highlight the trace dump to help to visualize.José Fonseca
2008-11-19python/retrace: Use the usual BSD-style license.José Fonseca
2008-08-22python/retrace: Interpret texture/surfaces destructions.José Fonseca
2008-08-22python/retrace: Process the trace call-by-call (instead of reading ↵José Fonseca
everything into memory).
2008-08-21python/retrace: Support gziped traces.José Fonseca
2008-08-20python/retrace: Retrace draw_elements and draw_range_elements.José Fonseca
2008-08-19python/retrace: Add several missing functions.José Fonseca