summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers
AgeCommit message (Collapse)Author
2009-09-15st/xorg: fixing copies and composite shadersZack Rusin
copies were busted when src == dst. also the composite shaders were incorrectly using the fragments instead of the texture coordinate.
2009-09-15st/xorg: lots of fixesZack Rusin
fixes blending binding and copy coordinates
2009-09-15st/xorg: Brian suggested that those could be mad'sZack Rusin
optimizes the common paths
2009-09-15st/xorg: Only unreference texture on pixmap destruction, don't destroy it.Michel Dänzer
Fixes memory corruption if e.g. the driver still has references to the texture.
2009-09-15st/xorg: Explicitly check whether the driver supports the pixmap formats.Michel Dänzer
Rather than arbitrarily checking for pixmap depth < 15.
2009-09-15st/xorg: Use A8 format for depth 8 pixmaps.Michel Dänzer
The inconsistent bpp caused issues with UploadTo/DownloadFromScreen.
2009-09-15st/g3dvl: pass color values to softpipe clear functionCooper Yuan
2009-09-14st/xorg: add some debugging helpersZack Rusin
2009-09-14st/xorg: fix ureg_DECL_constant() parametersBrian Paul
This fixes the compilation errors reported in bug 23945 but someone more familiar with the code should review for correctness and close the bug report.
2009-09-14g3dvl: update tgsi_opcode in order to build g3dvl libraryCooper Yuan
2009-09-12tgsi/ureg: give ureg_DECL_constant an explicit index parameterKeith Whitwell
Avoid the need to emit all constant declarations in order. Makes referring to a specific constant in the constant buffer much easier.
2009-09-12tgsi/ureg: VS inputs don't have any semantic tags, just an indexKeith Whitwell
Fix ureg_DECL_vs_input to reflect this and fix up all callers.
2009-09-10st/xorg: rename ctx to pipe to match every other gallium state trackerZack Rusin
plus it avoids the "ctx->ctx->" syntax
2009-09-10st/xorg: temporarily disablie copiesZack Rusin
2009-09-10st/xorg: implement pipelines surface/texture copiesZack Rusin
2009-09-10st/xorg: unite finalization and stub out pipelined copiesZack Rusin
2009-09-10st/xorg: abstract flushing and syncing for the exa codeZack Rusin
2009-09-10st/xorg: disable solid fills until copies are accelerated as wellZack Rusin
2009-09-10st/xorg: implement exasolids with full pipeliningZack Rusin
plus fix some small issues with the shaders
2009-09-10st/xorg: start adding support for surface fillsZack Rusin
2009-09-08st/xorg: Add support for EXA_MIXED_PIXMAPS and EXA_SUPPORTS_PREPARE_AUX.Michel Dänzer
Also make sure not to leak malloced memory when switching pixmaps to texture based.
2009-09-04gallium/xlib: minor clean-upsBrian Paul
2009-09-03gallium/xlib: silence unitialized var warningBrian Paul
2009-09-03st/xorg: add linear and radial gradient accelerationZack Rusin
2009-09-03st/xorg: radial gradient shaderZack Rusin
2009-09-03st/xorg: linear gradient shaderZack Rusin
2009-09-03st/xorg: cleanup and adjust to the changes in the ureg codeZack Rusin
2009-09-03st/xorg: adjust enums in preperation for gradientsZack Rusin
2009-09-02st/xorg: fix warningsZack Rusin
2009-09-02st/xorg: handle xrender repeat modesZack Rusin
2009-09-02st/xorg: flip the coordinate systemZack Rusin
2009-09-02st/xorg: handle solid fills in the fragment shaderZack Rusin
2009-09-02st/xorg: Guard against realy old versions of XorgJakob Bornecrantz
2009-09-02st/xorg: Remove code no longer support by xserver Git master.Michel Dänzer
Shouldn't be necessary with older versions either.
2009-09-02st/xorg: Add support for xserver Git master DRI2 interface.Michel Dänzer
Reorganize to handle both interfaces with common code.
2009-09-02st/dri: Slight consolidation of DRI2 buffer handling.Michel Dänzer
Always use / assume a combined depth/stencil buffer. Also update drawable formats from surfaces returned by the driver.
2009-09-02st/xorg: Add EXA UploadToScreen and DownloadFromScreen hooks.Michel Dänzer
2009-09-01st/xorg: getting indexes right tends to be helpfulZack Rusin
2009-09-01st/xorg: redo the vertex shaderZack Rusin
2009-09-01st/xorg: setup solid fillsZack Rusin
2009-09-01st/xorg: fold back the helper function into coreZack Rusin
2009-09-01st/xorg: start rendering and compositing picturesZack Rusin
2009-09-01st/xorg: Fix crash in MPHJakob Bornecrantz
2009-08-31st/xorg: add code to render textured quads for composite accelerationZack Rusin
2009-08-31st/xorg: setup constant buffers for vertex and fragment shadersZack Rusin
2009-08-31st/xorg: Re-organize the EXA ModifyPixmapHeader hook a bit.Michel Dänzer
This should also handle the case where the pixmap is backed by a (different) texture before and afterwards.
2009-08-31st/xorg: Simplify EXA ModifyPixmapHeader hook for pPixmap != NULL.Michel Dänzer
Just let the upper layers handle it.
2009-08-31st/xorg: Don't always fall back for solid fills.Michel Dänzer
2009-08-31Gallium xlib: Add support for BGRA visuals.Michel Dänzer
2009-08-29xlib: Ensure one screen instance.José Fonseca