Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-01 | st/xorg: Create winsys hooks that we call into | Jakob Bornecrantz | |
2009-12-02 | wgl: Call st_swapbuffers instead of st_notify_swapbuffers. | José Fonseca | |
This will get single buffer, double buffer, and joint single/double buffer (typical in CAD applications) done right, at least as far as the frambuffer is concerned. There are still problems with multiple contexts using the same framebuffer because st_framebuffer_* calls assume the framebuffer is bound to a single context. | |||
2009-11-27 | st/xorg: proper fix for compositing after rounding up | Keith Whitwell | |
Basically don't round up shared textures. This fixes compiz, but I'm afraid that rounding up texture sizes here in the driver is doomed, as it will inevitably break texture wrap modes. | |||
2009-11-27 | Revert "st/xorg: fix composite after texture size changes" | Keith Whitwell | |
This reverts commit 124ae596806f1a77af46f1f0e446d448da6e953a. Pushed by mistake | |||
2009-11-27 | st/xorg: fix composite after texture size changes | Keith Whitwell | |
2009-11-27 | wgl: Fix copy'n'paste typo in comment. | José Fonseca | |
2009-11-27 | st/xorg: speculatively round textures up to nearest POT | Keith Whitwell | |
I'm not sure if this is a great change, but helps with caching. Probably we want to turn this on/off on a driver-by-driver basis. | |||
2009-11-27 | st/xorg: free last fence | Keith Whitwell | |
2009-11-26 | st/xorg: Use pipe clear hook for solid fills of whole pixmaps. | Michel Dänzer | |
Can give a little boost e.g. for anti-aliased text rendering. | |||
2009-11-26 | st/xorg: Make sure DRI2 blits use GPU copy contents even for software fallback. | Michel Dänzer | |
Fixes 3D apps not updating with a non-GL compositing manager and Option "2DAccel" "off". Also clean up a little pixmap vs. drawable mess. | |||
2009-11-26 | st/xorg: fix refcounting bugs introduced in earlier commit | Keith Whitwell | |
2009-11-26 | st/xorg: formatting | Keith Whitwell | |
This directory needs indent run over it. | |||
2009-11-26 | st/xorg: remove debugging flush | Keith Whitwell | |
Accidentally committed in 7fbdbad5c02e3d5bfbf0e641e2aec224e39fa974 ('st/xorg: consolidate some dest surface state setting') | |||
2009-11-26 | st/xorg: render throttling in block handler | Keith Whitwell | |
Similar to the classic swapbuffer throttling in GL drivers, put an upper bound on the number of outstanding chunks of rendering the state tracker can generate -- where calling the block handler denotes a chunk. Currently that number is set at around 4 "chunks", but could be tweaked up or down. If a better measure for the amount of outstanding rendering is found, that would be fine too. As it stands, this improves interactivity by preventing the X server from queueing up arbitary amounts of rendering. | |||
2009-11-26 | st/xorg: split copy operation into prepare/copy/done phases | Keith Whitwell | |
Any high-overhead one-off tasks are moved into the prepare hook. | |||
2009-11-26 | st/xorg: don't set up constant buffer for non-xv fragment shaders | Keith Whitwell | |
These currently don't reference any constants. Can add this back if newer shaders need them, but in the meantime don't create a new constant buffer every time we do a blit. | |||
2009-11-26 | st/xorg: split up shared Done call | Keith Whitwell | |
The two users of composite (Composite and Solid) now call a new xorg_composite_done() from their Done functions, while CopyDone is directly implemented on top of xorg_renderer.c. | |||
2009-11-26 | st/xorg: set up rasterizer state in init | Keith Whitwell | |
2009-11-26 | st/xorg: remove redundant clipping code | Keith Whitwell | |
2009-11-26 | st/xorg: don't bother with cso save and restore in copy func | Keith Whitwell | |
2009-11-26 | st/xorg: consolidate some dest surface state setting | Keith Whitwell | |
2009-11-24 | st/xorg: Pass mode types from the kernel to X | Jakob Bornecrantz | |
2009-11-24 | st/xorg: Add libkms integration | Jakob Bornecrantz | |
2009-11-24 | st/xorg: Touch up xorg_crtc.c | Jakob Bornecrantz | |
2009-11-24 | st/xorg: Rename driver functions | Jakob Bornecrantz | |
2009-11-24 | st/xorg: Rename output functions | Jakob Bornecrantz | |
2009-11-24 | st/xorg: Rename dri2 functions | Jakob Bornecrantz | |
2009-11-24 | st/xorg: Standardise all function names defined in xorg_tracker.h | Jakob Bornecrantz | |
2009-11-25 | st/xorg: accelerate src luminance | Zack Rusin | |
2009-11-24 | st/xorg: use surface_copy for blits if available | Keith Whitwell | |
Even if its not available, we really want to be coalescing blit operations better. | |||
2009-11-22 | st/xorg: Prevent potential null pointer deference in xorg_xv.c. | Vinson Lee | |
2009-11-22 | st/xorg: Reorder cases in switch statement. | Vinson Lee | |
Silences missing break statement warning. | |||
2009-11-20 | st/egl: Fix memory leak in egl_tracker.c. | Vinson Lee | |
2009-11-18 | st/xorg: Flush any pending operations on upload | Jakob Bornecrantz | |
2009-11-18 | st/xorg: Unbind any textures in solid | Jakob Bornecrantz | |
Helps debuging with rbug | |||
2009-11-20 | Fix vega compilation. | Alan Hourihane | |
2009-11-20 | st/xorg: Fix type of 'unknown'. | Vinson Lee | |
2009-11-19 | st/xorg: Fix infinite loop in copy_packed_data. | Vinson Lee | |
2009-11-19 | st/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-19 | st/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-19 | st/xorg: Try harder to ensure a shared texture has valid contents right away. | Michel Dänzer | |
2009-11-19 | st/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-19 | st/xorg: Remove superfluous flushes from the EXA WaitMarker hook. | Michel Dänzer | |
Thanks to Thomas Hellström for pointing this out. | |||
2009-11-19 | st/xorg: Don't initialize non-existing fields. | Michel Dänzer | |
2009-11-18 | st/xorg: Init all functions and fix spelling | Jakob Bornecrantz | |
2009-11-18 | st/xorg: Make the #if more easier to read | Jakob Bornecrantz | |
2009-11-18 | st/xorg: Use the correct DRI2BufferPtr struct on 1.6.4 servers | Jakob Bornecrantz | |
2009-11-17 | st/xorg: Fix copy-pasto | Jakob Bornecrantz | |
Thanks Alan. | |||
2009-11-16 | st/xorg: Fix comp alpha code and deal with luminance masks | Jakob 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-16 | st/xorg: Incase of format missmatch swizzle channels and set alpha | Jakob Bornecrantz | |
This path is only hit for icons in gnome so far |