summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/trace
Commit message (Collapse)AuthorAgeFilesLines
* gallium: make p_winsys internalZack Rusin2009-01-302-17/+17
| | | | | move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage
* gallium: give the screen priority when it comes to buffer allocationsZack Rusin2009-01-291-16/+16
| | | | | | allows the driver to overwrite buffer allocation, first step on the way to making winsys interface internal to the drivers. state trackers and the code above it will go through the screen
* gallium: remove redundant size from the constant bufferZack Rusin2009-01-271-1/+0
| | | | reuse the size of the actual buffer
* gallium: it's a reference value, not a reference numberZack Rusin2009-01-271-1/+1
|
* gallium: standardize api on the prefix "nr"Zack Rusin2009-01-272-3/+3
|
* gallium: standardize naming of masksZack Rusin2009-01-271-2/+2
|
* gallium: standardize on stride instead of pitch in the interfaceZack Rusin2009-01-271-2/+2
|
* gallium: Remove the standalone surfaces.José Fonseca2009-01-202-65/+17
| | | | | | | | | | | | | | | | | | | | | | | | | This commit is mostly just a cosmetic change that cleans-up the interfaces, replacing pipe_winsys::surface_* calls by /** * Allocate storage for a display target surface. * * Often surfaces which are meant to be blitted to the front screen (i.e., * display targets) must be allocated with special characteristics, memory * pools, or obtained directly from the windowing system. * * This callback is invoked by the pipe_screenwhen creating a texture marked * with the PIPE_TEXTURE_USAGE_DISPLAY_TARGET flag to get the underlying * buffer storage. */ struct pipe_buffer *(*surface_buffer_create)(struct pipe_winsys *ws, unsigned width, unsigned height, enum pipe_format format, unsigned usage, unsigned *stride); Most drivers were updated but not all were tested. Use the softpipe pipe driver and the xlib winsys changes as a reference when fixing other drivers.
* Merge commit 'origin/gallium-0.2' into gallium-xlib-reworkKeith Whitwell2009-01-091-2/+2
|\ | | | | | | | | | | Conflicts: progs/glsl/Makefile
| * gallium: Replace uint64 by standard uint64_t.José Fonseca2009-01-081-2/+2
| | | | | | | | | | uint64 is not (so?) standard, and often redefined by third parties, causing name clashes.
* | gallium: split driver-independent code out of xlib winsysKeith Whitwell2009-01-081-0/+18
|/ | | | Place in new xlib state-tracker. This is a statetracker for the GLX API.
* trace: Fix typo in build instructions.José Fonseca2008-09-161-1/+1
|
* 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
|