summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/trace
Commit message (Collapse)AuthorAgeFilesLines
* trace: Request a growable file.José Fonseca2008-09-081-1/+1
|
* trace: Use util's stream.José Fonseca2008-09-085-354/+6
|
* gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.hBrian Paul2008-08-249-8/+9
| | | | Also, rename p_tile.[ch] to u_tile.[ch]
* trace: Include u_string.h.Michal Krol2008-08-231-0/+1
|
* trace: Don't trace texture/surfaces releases, only destructions.José Fonseca2008-08-221-16/+18
|
* trace: Use a 4 hexadecimal digit suffix.José Fonseca2008-08-221-1/+1
|
* trace: Hack to detect writes to user buffers.José Fonseca2008-08-213-0/+64
| | | | | | It often happens that new data is written directly to the user buffers without mapping/unmapping. This hack marks user buffers and dumps them before passing them to pipe context.
* trace: Split the output stream on windows.José Fonseca2008-08-211-27/+75
| | | | Because windows limits the ammount of memory that can be mapped.
* trace: Fix pipe_clip_state dump.José Fonseca2008-08-191-17/+6
|
* trace: Support C++.José Fonseca2008-08-192-0/+18
|
* trace: Explain how to integrate with a state tracker or winsys.José Fonseca2008-08-181-3/+42
|
* trace: Preliminary stream implementation for GDI.José Fonseca2008-08-183-14/+145
|
* trace: Use long longs to ensure covering 64bits integers.José Fonseca2008-08-182-6/+6
|
* trace: Get the trace file from the GALLIUM_TRACE option itself.José Fonseca2008-08-184-13/+12
|
* trace: Fix typo.José Fonseca2008-08-151-1/+1
|
* trace: Wrap all textures and surface created by the pipe driver.José Fonseca2008-08-157-49/+378
| | | | | | | That is, Unfortunately, this causes a regression in softpipe, where the output gets tyled.
* trace: Allow multiple screens. Flush after call.José Fonseca2008-08-154-16/+53
|
* trace: Several fixes.José Fonseca2008-08-152-9/+15
|
* trace: Trace surface contents.José Fonseca2008-08-153-24/+60
|
* trace: Make stream a global variable.José Fonseca2008-08-1512-1017/+906
| | | | | This not only simplifies the code, but allows to use atexit() to ensure the log is closed when applications don't exit cleanly.
* trace: Update status.José Fonseca2008-08-141-2/+4
|
* trace: Separate the trace screen/context vs the original screen/context.José Fonseca2008-08-145-32/+34
|
* trace: More dump fixes.José Fonseca2008-08-122-1/+2
|
* trace: Fix create_blend_state dump.José Fonseca2008-08-121-0/+2
|
* trace: Dump polygon stipple state as an array.José Fonseca2008-08-121-2/+3
|
* trace: Fix create_depth_stencil_alpha_state trace.José Fonseca2008-08-121-1/+3
|
* trace: Dump pipe_{depth,stencil,alpha}_state names.José Fonseca2008-08-121-3/+3
|
* trace: Replace buffer_map+memcpy+buffer_unmap by buffer_writeJosé Fonseca2008-08-121-31/+8
|
* trace: Zero the buffers to avoid dumping uninitialized memory.José Fonseca2008-08-121-4/+15
|
* trace: Fix hexadecimal dumping.José Fonseca2008-08-121-6/+5
|
* trace: Trace winsys/screen/context creation.José Fonseca2008-08-124-90/+71
|
* trace: Trace texture depth.José Fonseca2008-08-121-0/+4
|
* trace: Dump writes to pipe_buffers.José Fonseca2008-08-092-1/+56
|
* trace: Prevent tracing internal pipe driver calls.José Fonseca2008-08-092-5/+7
|
* trace: Dump shaders as text.José Fonseca2008-08-092-5/+44
|
* trace: Allow to dump binary data.José Fonseca2008-08-094-27/+37
|
* trace: Trace pipe_winsys calls.José Fonseca2008-08-094-7/+476
|
* trace: Remove unused code.José Fonseca2008-08-091-2/+0
|
* trace: Prevent from internal calls from pipe_context to pipe_screen from ↵José Fonseca2008-08-081-0/+6
| | | | being traced.
* trace: Simplify HTML output.José Fonseca2008-08-071-40/+7
|
* trace: Merge the CSS into the XSL.José Fonseca2008-08-072-74/+56
|
* trace: Dump format names.José Fonseca2008-08-075-4/+13
|
* trace: Dump state.José Fonseca2008-08-076-25/+549
|
* trace: Trace pipe context calls.José Fonseca2008-08-073-7/+1027
|
* trace: Add missing XSL and CSS.José Fonseca2008-08-072-0/+186
|
* trace: New pipe driver to trace incoming calls.José Fonseca2008-08-0712-0/+1300
Only pipe_screen calls traced, and only linux supported, for now.