summaryrefslogtreecommitdiff
path: root/src/gallium
AgeCommit message (Collapse)Author
2009-04-24util: Add debug_printf_onceMicah Dowty
2009-04-27stw: Use a statically initiallized gl proc table.José Fonseca
It doesn't change anyway.
2009-04-26r300-gallium: Correctly flush Draw.Corbin Simpson
Should help with a few non-TCL bugs.
2009-04-26r300-gallium: Add a draw_flush() to r300_flush().Mathias Gottschlag
This fixes some missing primitives which had been drawn right before the next glClear().
2009-04-25r300-gallium: Fix vertex shader OVM counting.Corbin Simpson
Attribs must be packed: position, point size, colors, texcoords. Thanks to osiris for pointing it out.
2009-04-25r300-gallium: Clean up FB state emit.Corbin Simpson
2009-04-25r300-gallium: Set framebuffer pitch on every framebuffer change.Mathias Gottschlag
Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com>
2009-04-25gallium-intel: Fix warningJakob Bornecrantz
2009-04-25gallium-intel: Cache software switchJakob Bornecrantz
2009-04-25gallium-intel: Link dri2 driver with softpipeJakob Bornecrantz
2009-04-24tgis: SSE code generator doesn't yet support indirect addressing of temp regsBrian Paul
Fall back to interpreter in this case.
2009-04-24pipebuffer: don't fail when validating mapped buffersKeith Whitwell
This can be almost impossible to avoid - hopefully we won't encounter a situation where this is a true requirement. Would probably require drivers to flush between hardware and software vertex processing.
2009-04-24util: Add more entry points for dumping to bmpJakob Bornecrantz
2009-04-23gallium: Handle non-NULL data pointer in EXA ModifyPixmapHeader hook.Michel Dänzer
Need to use the data pointed to for pixmap contents in that case. Fixes RENDER based text rendering.
2009-04-23gallium: Make the intel xorg winsys start up with any Intel chipset.Michel Dänzer
For unsupported devices the screen/context creation should fail cleanly later on.
2009-04-23gallium/intel/gem: Use softpipe rather than i915simple if INTEL_SOFTPIPE is set.Michel Dänzer
2009-04-23gallium: Always include xorg-server.h before other X server headers.Michel Dänzer
Various breakage otherwise, e.g. _XSERVER64 not being defined on 64 bit leading to inconsistent definitions of X server internal structs.
2009-04-23gallium: Fix up xorg state tracker build.Michel Dänzer
2009-04-22gallium: license, copyrightBrian Paul
2009-04-21r300-gallium: Fix CS size mismatchMathias Gottschlag
This fixes some warnings which appear because the driver assumes a wrong cs size (13 vs 16 register writes in some cases).
2009-04-20softpipe: fix softpipe_is_buffer/texture_referenced() regressionBrian Paul
Return the conservative PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE value for now. This fixes a bunch of regressions seen in piglit and glean.
2009-04-20wgl: Don't implement broken gl_dispatch_stub_xxx.José Fonseca
These don't respect the stdcall, so they crash upon return.
2009-04-20util: don't set unused blend stateKeith Whitwell
Try to avoid creating multiple blend atoms.
2009-04-20trace: Add initializer for static variablesJakob Bornecrantz
2009-04-19trace: Enable dumping to be turned on and offJakob Bornecrantz
2009-04-18softpipe: Simplify softpipe_create's prototype.José Fonseca
2009-04-18softpipe: Fix softpipe_is_texture_referenced prototype.José Fonseca
2009-04-18softpipe: Remove softpipe_winsys.José Fonseca
Not used by softpipe anyway.
2009-04-17xlib/trace: Fixup xlib traceJakob Bornecrantz
2009-04-17pipe: Get the p_atomic_dec_zero logic right this time.José Fonseca
2009-04-17gallium: Fix PIPE_ATOMIC_GCC_INTRINSIC build.Michel Dänzer
2009-04-17trace: Keep screen objects on listsJakob Bornecrantz
2009-04-17trace: Fix is_referenced functionsJakob Bornecrantz
2009-04-17trace: Simplify trace_buffer functionJakob Bornecrantz
2009-04-17pipe: Fix InterlockedDecrement usage.José Fonseca
2009-04-17wgl: Put commas in the right places.José Fonseca
2009-04-17wgl: Flip the pixel format order.José Fonseca
List 32bit pixel formats first, as nobody is interested in 16bit pixel formats nowadays.
2009-04-17egl: don't crash with one more khronos apiZack Rusin
2009-04-17gallium: simplify further the logic for selecting mutex implementationKeith Whitwell
Cleaner than the previous cleanup...
2009-04-17util: flush stdout before emitting debug_printf on stderrKeith Whitwell
A lot of the mesa demos emit commentary on stdout, try to keep it in sync with the corresponding output from debug_printf().
2009-04-17gallium: add #warning to mutex-based atomic implementationKeith Whitwell
Some builds end up picking this up.
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-16Merge branch 'gallium-s3tc'José Fonseca
2009-04-15util: Fix surface usageJakob Bornecrantz
2009-04-15gallium: new, simple RGBA surface create/destroy helpersBrian Paul
Use these for quickly creating an RGBA drawing surface.
2009-04-15r300-gallium: Fixup for commit 9b75627fab5bf2ea90f27ddd31b60c54895f6de6.Thomas Hellstrom
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
2009-04-15gallium: Make sure we flush before some texture / buffer operations.Thomas Hellstrom
Also implement context member functions to optimize away those flushes whenever possible. Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
2009-04-15r300-gallium: Use viewport state.Corbin Simpson
2009-04-15r300-gallium: Don't use indexbufs for now.Corbin Simpson
They aren't working, so best to turn it off.
2009-04-15r300-gallium: Point size is at OVM position 15, not 1.Corbin Simpson
Or so sayeth osiris, and he would know. :3