summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-12-10Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1Ben Skeggs
2007-12-10Correct user VBO size.Ben Skeggs
2007-12-10Remove stray references to struct pipe_region.Michel Dänzer
2007-12-10nv40: more flexible vbo format translationBen Skeggs
2007-12-10Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1Ben Skeggs
2007-12-09use quadColor local varBrian
2007-12-10nouveau: fix elusive dma bugBen Skeggs
In some situations WAIT_RING would get called while the GPU was processing data from outside the "master" ring, which caused dma.free to be updated incorrectly and much fun was had. WAIT_RING will now wait until it reads GET values from within the main ring buffer before calculating free space.
2007-12-09Fix looping for multi-color buffer writing.Brian
2007-12-09added null ptr check in draw_destroy() for rasterizer stageBrian
2007-12-10nouveau: add callbacks for signalled fencesBen Skeggs
2007-12-10nouveau: fix buildBen Skeggs
2007-12-10Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1Ben Skeggs
Conflicts: src/mesa/drivers/dri/intel_winsys/intel_winsys_pipe.c src/mesa/pipe/Makefile src/mesa/pipe/draw/draw_vertex_fetch.c src/mesa/pipe/i915simple/i915_texture.c src/mesa/pipe/softpipe/sp_texture.c src/mesa/pipe/xlib/xm_winsys.c src/mesa/state_tracker/st_cb_fbo.c
2007-12-09Adapt for winsys interface changes.José Fonseca
2007-12-10nouveau: give resources a start propertyBen Skeggs
2007-12-09gallium: use SSE by defaultJosé Fonseca
2007-12-09Allow tgsi_dump print-out to stderr or a string buffer.Michal
Handle source register complement modifier in exec and dump.
2007-12-09gallium: Remove buffer_unfence and buffer_finish.José Fonseca
These interfaces have been deemed useless by Keith.
2007-12-09gallium: Reusable pipe buffer library.José Fonseca
This is an optional library that winsys drivers can use to simplify memory management, and help meet the winsys interface requirements.
2007-12-09gallium: fix ordering of arguments to pack_ui32_float4Keith Whitwell
2007-12-09gallium: initialized draw element buffer to NULLKeith Whitwell
2007-12-09gallium: add support for aliased 4ub formatKeith Whitwell
2007-12-09gallium: support the full range of possible vertex typesKeith Whitwell
2007-12-09gallium: add draw_stage::destroy().Michal
2007-12-09gallium: Comment on winsys's fence functions. Fix comment layout for doxygen.José Fonseca
2007-12-09temporary _mesa_printf symbolkeithw
2007-12-09[pipe]: add Offset() util macrokeithw
2007-12-09Document return types.José Fonseca
2007-12-09add fence interfaces and buffer create flags to pipe_winsyskeithw
2007-12-09Merge branch 'nouveau-gallium-0.1' into darktama-gallium-0.1Ben Skeggs
2007-12-09nouveau: downgrade hacked syncs to hacked flushesBen Skeggs
Unfortunately we still need to keep the forced flushes as mesa's vbo path is still insane. But, at least this is a little less brutal. The bo code will detect when it needs to do a sync.
2007-12-09nouveau: relocs are per-pushbuf, not per-channelBen Skeggs
2007-12-09nouveau: use "indirect" push buffersBen Skeggs
2007-12-09nouveau: adapt to gallium interface changesBen Skeggs
2007-12-09Try to reduce the frequency of calls to pipe->get_tex_surface()Brian
Save the surface info in the tile cache and re-use whenever possible.
2007-12-09shorten loops over color bufsBrian
2007-12-09code re-org in softpipe_clear()Brian
2007-12-09clean-upsBrian
2007-12-09Tile clearing optimizations.Brian
Clear using int values rather than floats when possible. Better performance now.
2007-12-09Disable, remove tnl module from the Gallium build since no longer used.Brian
2007-12-09New vbo_set_draw_func() to keep vbo context opaque to state tracker and tnl ↵Brian
module.
2007-12-09Disable swrast, swrast_setup and driverfuncs in the build.Brian
The gallium/state tracker no longer uses them and this speeds up the build a bit.
2007-12-09Move _mesa_init_glsl_driver_functions() into shader_api.cBrian
This allows making a bunch of functions static, and removes a state tracker dependency on driverfuncs.c
2007-12-09Define PIPE_FORMAT_ tokens as an enum set, rather than #defines.Brian
This makes debugging a _lot_ easier. In gdb, "print format" used to display 613570600, now you see PIPE_FORMAT_A8R8G8B8_UNORM.
2007-12-09include tgsi_dump.hBrian
2007-12-09Replace "duplicate" formatsBrian
2007-12-09Get rid of "duplicate" formats.Brian
For example, replace PIPE_FORMAT_U_A8_R8_G8_B8 with PIPE_FORMAT_A8R8G8B8_UNORM
2007-12-09Enable the tile clear "optimization"Brian
Not really faster yet because we're using the float-valued put/get_tile() functions so we're doing quite a bit of float/int conversion. That can be fixed though...
2007-12-09Make sp_tile_cache_flush_clear() static.Brian
Also, misc clean-ups, comments.
2007-12-09Convert the clearValue back to floats for sp_tile_cache_clear()Brian
It might be nice if sp->clear() took the color/value as floats...
2007-12-09Some tile cache improvements, clean-ups.Brian
Code for optimized clears (per-tile flag indicating clear status) in place but not enabled yet.