summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/xorg
AgeCommit message (Collapse)Author
2009-11-24st/xorg: Add libkms integrationJakob Bornecrantz
2009-11-24st/xorg: Touch up xorg_crtc.cJakob Bornecrantz
2009-11-24st/xorg: Rename driver functionsJakob Bornecrantz
2009-11-24st/xorg: Rename output functionsJakob Bornecrantz
2009-11-24st/xorg: Rename dri2 functionsJakob Bornecrantz
2009-11-24st/xorg: Standardise all function names defined in xorg_tracker.hJakob Bornecrantz
2009-11-25st/xorg: accelerate src luminanceZack Rusin
2009-11-24st/xorg: use surface_copy for blits if availableKeith Whitwell
Even if its not available, we really want to be coalescing blit operations better.
2009-11-22st/xorg: Prevent potential null pointer deference in xorg_xv.c.Vinson Lee
2009-11-22st/xorg: Reorder cases in switch statement.Vinson Lee
Silences missing break statement warning.
2009-11-18st/xorg: Flush any pending operations on uploadJakob Bornecrantz
2009-11-18st/xorg: Unbind any textures in solidJakob Bornecrantz
Helps debuging with rbug
2009-11-20st/xorg: Fix type of 'unknown'.Vinson Lee
2009-11-19st/xorg: Fix infinite loop in copy_packed_data.Vinson Lee
2009-11-19st/xorg: Replace compile-time acceleration switch with Option "2DAccel".Michel Dänzer
This option can be used to disable 2D acceleration. DRI2 and XVideo blits will still be accelerated, at least to some degree even with compositing.
2009-11-19st/xorg: Miscellaneous XVideo fixes.Michel Dänzer
* Make sure the destination pixmap has a texture to render into. * Fix damage reporting so the EXA migration code can do the right thing. * Fix destination coordinates for redirected windows.
2009-11-19st/xorg: Try harder to ensure a shared texture has valid contents right away.Michel Dänzer
2009-11-19st/xorg: Don't complain about convolution filter being 'unknown'.Michel Dänzer
Also add a newline to the complaint so it'll be a little less annoying if we actually encounter an unknown filter value again.
2009-11-19st/xorg: Remove superfluous flushes from the EXA WaitMarker hook.Michel Dänzer
Thanks to Thomas Hellström for pointing this out.
2009-11-19st/xorg: Don't initialize non-existing fields.Michel Dänzer
2009-11-18st/xorg: Init all functions and fix spellingJakob Bornecrantz
2009-11-18st/xorg: Make the #if more easier to readJakob Bornecrantz
2009-11-18st/xorg: Use the correct DRI2BufferPtr struct on 1.6.4 serversJakob Bornecrantz
2009-11-17st/xorg: Fix copy-pastoJakob Bornecrantz
Thanks Alan.
2009-11-16st/xorg: Fix comp alpha code and deal with luminance masksJakob Bornecrantz
There are two fixes in here one is a one liner that fixes component alpha logic. The other deals better with luminance formats used for masks, sources not yet implemented. Fixes component alpha text and icons in gnome. There are a one or two cases that this code misses. Like if src_luminance is set but no mask image is given.
2009-11-16st/xorg: Incase of format missmatch swizzle channels and set alphaJakob Bornecrantz
This path is only hit for icons in gnome so far
2009-11-16st/xorg: Only reference new picture formats when they're defined.Michel Dänzer
Fixes http://bugs.freedesktop.org/show_bug.cgi/?id=25094 .
2009-11-13st/xorg: try to fix non-uniform transformsZack Rusin
2009-11-11st/xorg: use an immediate instead of a full blown constZack Rusin
2009-11-11st/xorg: don't use flow controlZack Rusin
2009-11-11st/xorg: implement repeatnone and make some code smell less like assZack Rusin
2009-11-11st/xorg: fallback until daddy can implement you properlyZack Rusin
2009-11-10st/xorg: Fallback if picture format doesn't match texture formatJakob Bornecrantz
2009-11-10st/xorg: Don't segfault when debug printingJakob Bornecrantz
2009-11-10st/xorg: wrap to border colorZack Rusin
2009-11-10st/xorg: cleanup the namingZack Rusin
2009-11-10st/xorg: print ouf the picture formats when compositingZack Rusin
2009-11-10st/xorg: Fix SCons build.Michel Dänzer
Check for new DPMS header and add xorg_renderer.c source file.
2009-11-09st/xorg: remove deprecated rendering codeZack Rusin
2009-11-09st/xorg: fix composite batchingZack Rusin
quite a large performance optimization (text demo from 1.6fps to 9fps)
2009-11-06st/xorg: implement batching for the composite opZack Rusin
something is broken so disabled for now
2009-11-06st/xorg: batch solid fill requestsZack Rusin
instead of lots of very small transfers, one larger is a lot better for performance
2009-11-06st/xorg: start accumulating vertices in a common bufferZack Rusin
2009-11-06st/xorg: use quads instead of triangle fansZack Rusin
easier to split, accumulate and batch those
2009-11-06st/xorg: make the buffer size globalZack Rusin
2009-11-06st/xorg: unify vertex buffer handlingZack Rusin
first step on our way to batching
2009-11-04st/xorg: these flushes shouldn't be necessaryZack Rusin
performance optimization
2009-10-29st/xorg: fix scaling ov xv data, plus some cleanupsZack Rusin
2009-10-28st/xorg: fix src coordinates in the video acceleration pathsZack Rusin
2009-10-27st/xorg: fix xvZack Rusin