summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers
AgeCommit message (Collapse)Author
2009-10-23g3dvl: pass display and screen to g3dvl when creating video private contextCooper Yuan
2009-10-22st/xorg: fix the makefile when used with new xextprotoZack Rusin
2009-10-22st/xorg: cleanup the checks for whether the op is acceleratedZack Rusin
2009-10-22st/xorg: lots of render fixesZack Rusin
fixes all the blend modes, fixes flushing/finishing semantics, adds acceleration for the component alpha modes that we can support, fixes src in mask shader and general cleanups
2009-10-20st/xorg: Move drm init to own functionJakob Bornecrantz
2009-10-20st/xorg: Cleanly shutdownJakob Bornecrantz
2009-10-19st/xorg: Remove output functions not usedJakob Bornecrantz
2009-10-19st/xorg: makefile garbageZack Rusin
2009-10-19st/xorg: implement basic src/mask transformationsZack Rusin
plus fix filters
2009-10-19dri-st: Add EXT_provoking_vertex.Corbin Simpson
Hm, I could have sworn I did this before?
2009-10-18st/xorg: Switch to set_mode_majorJakob Bornecrantz
2009-10-18st/xorg: Massivly redo root pixmap creationJakob Bornecrantz
2009-10-18st/xorg: Clean up cursor functions a bitJakob Bornecrantz
2009-10-18st/xorg: Support more then one output of a given typeJakob Bornecrantz
2009-10-18st/xorg: Change how disable accel is handledJakob Bornecrantz
2009-10-17gallium: Permit surface_copy and surface_fill to be NULL.Corbin Simpson
Uf. Lots of files touched. Would people with working vega, xorg, dri1, etc. please make sure you are not broken, and fix yourself up if you are. There were only two or three places where the code did not have painful fallbacks, so I would advise st maintainers to find less painful workarounds, or consider overhauling util_surface_copy and util_surface_fill. Per ymanton, darktama, and Dr_Jakob's suggestions, clear has been left as-is. I will not add PIPE_CAP_BLITTER unless it is deemed necessary.
2009-10-15st/xorg: refix source overZack Rusin
2009-10-15st/xorg: fix most of the composition modesZack Rusin
2009-10-13st/xorg: Fix dpms include problemsJakob Bornecrantz
2009-10-14st/xorg: get transparency on fills working (fixes Qt/KDE apps)Zack Rusin
2009-10-13st/xorg: solid fills with masks are supportedZack Rusin
gradients are supported, but not enabled by default due to little testing they got
2009-10-13st/xorg: fix and enable by default xrender accelerationZack Rusin
src in mask was broken
2009-10-11st/xorg: initialize pipe in the rendererZack Rusin
2009-10-11st/xorg: lots of rendering and xv changesZack Rusin
extract all the rendering code to xorg_rendedrer, make both exa and xv share that code. in the process cleanup the rendering code and implement a lot more of the xv infrastructure.
2009-10-11st/xorg: implement basics of xvZack Rusin
2009-10-08st/xorg: Old X servers don't deal well with failing accessesJakob Bornecrantz
2009-10-08st/xorg: More fallback debuggingJakob Bornecrantz
Change the fallback debugging around a bit and do the old commit correctly
2009-10-08Revert "st/xorg: Debug fallbacks for composite as well"Jakob Bornecrantz
This commit included a change that should have been in its own commit, and turns out that you can do what was suposed to go in it in much better way as well. This reverts commit 5080e8bea6ae5cdb116023a5e2d8dbbb762bd69d.
2009-10-08st/xorg: Debug fallbacks for composite as wellJakob Bornecrantz
2009-10-08st/xorg: Use A8 textures for depth 8 pixmapsJakob Bornecrantz
There is no hardware out there that can render to I8 textures.
2009-10-08st/xorg: Fix depth stencil buffers on old X serversJakob Bornecrantz
Sanity checking is for the weak.
2009-10-08Merge branch 'mesa_7_6_branch'Brian Paul
Conflicts: src/mesa/drivers/common/meta.c
2009-10-07gallium/xlib: call XQueryExtension() in glXQueryExtension()Brian Paul
See bug 24321.
2009-10-07Merge branch 'mesa_7_6_branch'Nicolai Hähnle
2009-10-07gallium/xlib: fix glXQueryDrawable() bugs, see bug 24320Brian Paul
2009-10-07st/dri: Add missing front buffer case in dri_get_buffers().Michel Dänzer
This seems to help for compiz at least with some drivers. Also add an assert(0) to catch unhandled cases in the future.
2009-10-07gallium/xlib: return 0 for errorBase, eventBase in glXQueryExtension()Brian Paul
A little better than leaving the values undefined, I think. See bug 24321.
2009-10-05Merge branch 'mesa_7_6_branch'Brian Paul
Conflicts: src/gallium/auxiliary/util/u_cpu_detect.c
2009-10-05st/dri: avoid segfault if we can't get a pixmap's buffersBen Skeggs
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2009-10-05st/dri: no need to request fake front buffer, only handle it being returnedBen Skeggs
The previous behaviour was incorrect, and resulted in EXT_tfp being broken for DDX drivers that implement the correct behaviour (intel/radeon/nouveau). In the cases where a fake front buffer is required, the X server will return one when requesting __DRI_BUFFER_FRONT_LEFT. The Xorg state tracker (aka modesetting_drv) is likely broken now until it's modified to match the other drivers. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
2009-10-03st/dri: Install APPLE_vertex_array_object functionsNicolai Hähnle
Besides from being necessary to use that extension, it also fixes a crash when deleting the currently bound vertex array object. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-10-03st/dri: Install ARB_vertex_array_object functionsNicolai Hähnle
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
2009-10-02st/xorg: Use PIPE_TRANSFER_MAP_DIRECTLY flag in EXA PrepareAccess hook.Michel Dänzer
Propagate NULL return value. This also allows removing the DRM_MODE_FEATURE_DIRTYFB specific pixmap management hacks.
2009-10-02gallium: Preparations for adding more PIPE_TRANSFER_* usage flags.Michel Dänzer
Always test for PIPE_TRANSFER_READ/WRITE using the bit-wise and operator, and add a pipe_transfer_buffer_flags() helper for getting the buffer usage flags corresponding to them.
2009-10-02gallium/xlib: use bitwise-and to test GLX_RGBA_BIT in choose_visual()Brian Paul
The parameter is a bitmask.
2009-10-02gallium/xlib: return GLX_RGBA_BIT or GLX_COLOR_INDEX_BIT in get_config()Brian Paul
This reverts part of commit a6b84aef4ad3a7bac40704146a98977c62bfb6e8
2009-10-01g3dvl: Delete state_trackers/g3dvl, other unused files.Younes Manton
2009-10-01g3dvl: Copyright blocks.Younes Manton
2009-10-01st/xvmc: Set default CSC matrix to BT.601, no ProcAmp, full range RGB.Younes Manton
2009-10-01Merge branch 'mesa_7_6_branch'Brian Paul