mesa.git
14 years agoRevert "i965: Use VBOs in the VBO module on 965, now that we have ARB_map_buffer_range."
Eric Anholt [Wed, 2 Sep 2009 19:17:28 +0000 (12:17 -0700)]
Revert "i965: Use VBOs in the VBO module on 965, now that we have ARB_map_buffer_range."

This reverts commit 00413d87426f14df47d90ba3c995e1889e9f88ca.  Even with
fixes, using ARB_map_buffer_range in the VBO module isn't showing up as a
significant win, and some cases apparently regressed.

Bug #23624.

14 years agointel: Add support for FlushMappedBufferRange for ARB_map_buffer_range.
Eric Anholt [Wed, 2 Sep 2009 19:07:37 +0000 (12:07 -0700)]
intel: Add support for FlushMappedBufferRange for ARB_map_buffer_range.

This should help for the usage by the VBO module, where we would upload
the whole remaining chunk of the buffer for a series of range maps that should
cover just a segment of it.

14 years agointel: Sync a synchronized READ_BIT map buffer range with GL drawing to it.
Eric Anholt [Wed, 2 Sep 2009 18:33:08 +0000 (11:33 -0700)]
intel: Sync a synchronized READ_BIT map buffer range with GL drawing to it.

It's probably uncommon, but would obviously have gone wrong.

14 years agointel: Move MapBufferRange mesa state setting up to cover the 915 case.
Eric Anholt [Wed, 2 Sep 2009 05:07:37 +0000 (22:07 -0700)]
intel: Move MapBufferRange mesa state setting up to cover the 915 case.

14 years agost/xorg: Guard against realy old versions of Xorg
Jakob Bornecrantz [Wed, 2 Sep 2009 17:48:49 +0000 (19:48 +0200)]
st/xorg: Guard against realy old versions of Xorg

14 years agoRevert "mesa: fix the non-GNU C bit-field case"
Brian Paul [Wed, 2 Sep 2009 16:38:46 +0000 (10:38 -0600)]
Revert "mesa: fix the non-GNU C bit-field case"

This reverts commit 4b08e7498230eac30eea1721f33994b30999acd4.

Don't know what I was thinking there.

14 years agomesa: fix the non-GNU C bit-field case
Brian Paul [Wed, 2 Sep 2009 16:12:15 +0000 (10:12 -0600)]
mesa: fix the non-GNU C bit-field case

14 years agomesa: silence gcc bit-field warning
Gary Wong [Wed, 2 Sep 2009 16:11:15 +0000 (10:11 -0600)]
mesa: silence gcc bit-field warning

14 years agomesa: replace 8 with NUM_UNITS
Brian Paul [Wed, 2 Sep 2009 15:43:00 +0000 (09:43 -0600)]
mesa: replace 8 with NUM_UNITS

14 years agomesa: remove accidentally committed printf
Brian Paul [Wed, 2 Sep 2009 15:25:28 +0000 (09:25 -0600)]
mesa: remove accidentally committed printf

14 years agomesa: added #ifdef __GNUC__ around GLubyte bitfield usage
Brian Paul [Wed, 2 Sep 2009 14:45:34 +0000 (08:45 -0600)]
mesa: added #ifdef __GNUC__ around GLubyte bitfield usage

It would be nice if there were a #pragma or something to disable the warnings:

main/texenvprogram.c:87: warning: type of bit-field ‘Source’ is a GCC extension
main/texenvprogram.c:88: warning: type of bit-field ‘Operand’ is a GCC extension

but there doesn't appear to be a way to do that.

14 years agomesa: Compact state key for TexEnv program cache
Chris Wilson [Wed, 2 Sep 2009 12:11:25 +0000 (05:11 -0700)]
mesa: Compact state key for TexEnv program cache

By rearranging the bitfields within the key we can reduce the size
of the key from 644 to 196 bytes, reducing the cost of both the
hashing and equality tests.

14 years agost/xorg: Remove code no longer support by xserver Git master.
Michel Dänzer [Wed, 2 Sep 2009 14:01:21 +0000 (16:01 +0200)]
st/xorg: Remove code no longer support by xserver Git 

Shouldn't be necessary with older versions either.

14 years agost/xorg: Add support for xserver Git master DRI2 interface.
Michel Dänzer [Wed, 2 Sep 2009 14:00:30 +0000 (16:00 +0200)]
st/xorg: Add support for xserver Git master DRI2 interface.

Reorganize to handle both interfaces with common code.

14 years agost/dri: Slight consolidation of DRI2 buffer handling.
Michel Dänzer [Wed, 2 Sep 2009 13:41:41 +0000 (15:41 +0200)]
st/dri: Slight consolidation of DRI2 buffer handling.

Always use / assume a combined depth/stencil buffer.

Also update drawable formats from surfaces returned by the driver.

14 years agost/xorg: Add EXA UploadToScreen and DownloadFromScreen hooks.
Michel Dänzer [Wed, 2 Sep 2009 13:41:40 +0000 (15:41 +0200)]
st/xorg: Add EXA UploadToScreen and DownloadFromScreen hooks.

14 years agoi965: CS FENCE in URB_FENCE is 11-bits wide
Xiang, Haihao [Wed, 2 Sep 2009 05:27:25 +0000 (13:27 +0800)]
i965: CS FENCE in URB_FENCE is 11-bits wide

14 years agoi965: validate sf state
Xiang, Haihao [Thu, 20 Aug 2009 10:19:36 +0000 (18:19 +0800)]
i965: validate sf state

14 years agomesa: Make MultiDrawElements submit multiple primitives at once.
Eric Anholt [Mon, 31 Aug 2009 17:13:22 +0000 (10:13 -0700)]
mesa: Make MultiDrawElements submit multiple primitives at once.

Previously, MultiDrawElements just called DrawElements a bunch of times.
By sending several primitives down the pipeline at once, we avoid a bunch
of validation.  On my GL demo, this improves fps by 2.5% (+/- .41%) and
reduces CPU usage by 70.5% (+/- 2.9%) (n=3).

Reviewed by: Ian Romanick <ian.d.romanick@intel.com>

14 years agonv50: SWZ is the same as MOV from our perspective
Ben Skeggs [Wed, 2 Sep 2009 02:03:42 +0000 (12:03 +1000)]
nv50: SWZ is the same as MOV from our perspective

14 years agomesa: skip bitmap drawing code if width==0 or height==0
Brian Paul [Tue, 1 Sep 2009 23:40:07 +0000 (17:40 -0600)]
mesa: skip bitmap drawing code if width==0 or height==0

14 years agointel: use _mesa_expand_bitmap() to skip an intermediate buffer
Brian Paul [Tue, 1 Sep 2009 23:12:47 +0000 (17:12 -0600)]
intel: use _mesa_expand_bitmap() to skip an intermediate buffer

14 years agost/mesa: use new _mesa_expand_bitmap() function
Brian Paul [Tue, 1 Sep 2009 23:11:59 +0000 (17:11 -0600)]
st/mesa: use new _mesa_expand_bitmap() function

14 years agomesa: new _mesa_expand_bitmap() function
Brian Paul [Tue, 1 Sep 2009 23:11:35 +0000 (17:11 -0600)]
mesa: new _mesa_expand_bitmap() function

14 years agomesa: remove redundant assignments
Brian Paul [Tue, 1 Sep 2009 22:26:03 +0000 (16:26 -0600)]
mesa: remove redundant assignments

14 years agomesa: more clean-ups
Brian Paul [Tue, 1 Sep 2009 22:22:02 +0000 (16:22 -0600)]
mesa: more clean-ups

14 years agomesa: change conditional to match the previous one
Brian Paul [Tue, 1 Sep 2009 22:10:57 +0000 (16:10 -0600)]
mesa: change conditional to match the previous one

14 years agomesa: updated #includes
Brian Paul [Tue, 1 Sep 2009 22:05:07 +0000 (16:05 -0600)]
mesa: updated #includes

14 years agomesa: remove unused texenv_fragment_program::ctx field
Brian Paul [Tue, 1 Sep 2009 22:03:28 +0000 (16:03 -0600)]
mesa: remove unused texenv_fragment_program::ctx field

14 years agomesa: remove unused ureg::abs field
Brian Paul [Tue, 1 Sep 2009 22:01:12 +0000 (16:01 -0600)]
mesa: remove unused ureg::abs field

14 years agomesa: remove unused ureg:negateabs field
Brian Paul [Tue, 1 Sep 2009 21:58:49 +0000 (15:58 -0600)]
mesa: remove unused ureg:negateabs field

14 years agomesa: more comments, clean-ups
Brian Paul [Tue, 1 Sep 2009 21:57:36 +0000 (15:57 -0600)]
mesa: more comments, clean-ups

14 years agomesa: simplify translate_tex_src_bit()
Brian Paul [Tue, 1 Sep 2009 21:51:23 +0000 (15:51 -0600)]
mesa: simplify translate_tex_src_bit()

14 years agomesa: minor code clean-ups, comments
Brian Paul [Tue, 1 Sep 2009 21:49:55 +0000 (15:49 -0600)]
mesa: minor code clean-ups, comments

14 years agomesa: replace 8 with MAX_TEXTURE_UNITS
Brian Paul [Tue, 1 Sep 2009 21:34:16 +0000 (15:34 -0600)]
mesa: replace 8 with MAX_TEXTURE_UNITS

14 years agodri: remove unused meta_clear_tris()
Brian Paul [Tue, 1 Sep 2009 18:43:23 +0000 (12:43 -0600)]
dri: remove unused meta_clear_tris()

14 years agointel: use BUFFER_BITS_COLOR
Brian Paul [Tue, 1 Sep 2009 18:41:32 +0000 (12:41 -0600)]
intel: use BUFFER_BITS_COLOR

14 years agointel: fix incorrect parameter type for intel_bufferobj_map_range()
Brian Paul [Tue, 1 Sep 2009 18:39:30 +0000 (12:39 -0600)]
intel: fix incorrect parameter type for intel_bufferobj_map_range()

14 years agoradeon: trim down #includes
Brian Paul [Tue, 1 Sep 2009 18:32:01 +0000 (12:32 -0600)]
radeon: trim down #includes

14 years agoradeon: use _mesa_meta_clear()
Brian Paul [Tue, 1 Sep 2009 18:28:48 +0000 (12:28 -0600)]
radeon: use _mesa_meta_clear()

14 years agomesa: obey stencil write mask in _mesa_meta_draw_pixels()
Brian Paul [Tue, 1 Sep 2009 18:24:30 +0000 (12:24 -0600)]
mesa: obey stencil write mask in _mesa_meta_draw_pixels()

14 years agointel: set Length/Offset fields in intel_bufferobj_map()
Brian Paul [Tue, 1 Sep 2009 18:23:52 +0000 (12:23 -0600)]
intel: set Length/Offset fields in intel_bufferobj_map()

14 years agointel: use _mesa_meta_copy_pixels() when do_blit_copypixels() fails
Brian Paul [Tue, 1 Sep 2009 18:23:01 +0000 (12:23 -0600)]
intel: use _mesa_meta_copy_pixels() when do_blit_copypixels() fails

Also, trim down #includes.

14 years agointel: trim down #includes
Brian Paul [Tue, 1 Sep 2009 18:18:55 +0000 (12:18 -0600)]
intel: trim down #includes

14 years agointel: use _mesa_meta_draw_pixels()
Brian Paul [Tue, 1 Sep 2009 18:16:13 +0000 (12:16 -0600)]
intel: use _mesa_meta_draw_pixels()

The textured quad path is slightly faster and will work with POT textures
on i945.

14 years agointel: trim down #includes
Brian Paul [Tue, 1 Sep 2009 18:07:52 +0000 (12:07 -0600)]
intel: trim down #includes

14 years agointel: use _mesa_meta_clear(), it's a bit faster
Brian Paul [Tue, 1 Sep 2009 18:05:41 +0000 (12:05 -0600)]
intel: use _mesa_meta_clear(), it's a bit faster

14 years agoradeon: Fix OQ to set ful lstate as dirty too.
Pauli Nieminen [Tue, 1 Sep 2009 23:03:13 +0000 (02:03 +0300)]
radeon: Fix OQ to set ful lstate as dirty too.

14 years agoradeon: Fix debug output to filter out less critical messages instead of more critical.
Pauli Nieminen [Tue, 1 Sep 2009 22:28:46 +0000 (01:28 +0300)]
radeon: Fix debug output to filter out less critical messages instead of more critical.

14 years agost/xorg: getting indexes right tends to be helpful
Zack Rusin [Tue, 1 Sep 2009 23:01:05 +0000 (19:01 -0400)]
st/xorg: getting indexes right tends to be helpful

14 years agost/xorg: redo the vertex shader
Zack Rusin [Tue, 1 Sep 2009 22:59:01 +0000 (18:59 -0400)]
st/xorg: redo the vertex shader

14 years agost/xorg: setup solid fills
Zack Rusin [Tue, 1 Sep 2009 21:49:32 +0000 (17:49 -0400)]
st/xorg: setup solid fills

14 years agost/xorg: fold back the helper function into core
Zack Rusin [Tue, 1 Sep 2009 18:43:59 +0000 (14:43 -0400)]
st/xorg: fold back the helper function into core

14 years agost/xorg: start rendering and compositing pictures
Zack Rusin [Tue, 1 Sep 2009 18:43:04 +0000 (14:43 -0400)]
st/xorg: start rendering and compositing pictures

14 years agoARB prog parser: Fix handling of stateOptModMatNum
Ian Romanick [Tue, 1 Sep 2009 18:10:05 +0000 (11:10 -0700)]
ARB prog parser: Fix handling of stateOptModMatNum

The optional array index should clearly be enclosed in square
brackets.  This helps the oglconform test vp_binding.c get a bit
farther, but it still fails.

14 years agotgsi: remove redundant CND0 opcode
Keith Whitwell [Tue, 1 Sep 2009 16:29:24 +0000 (17:29 +0100)]
tgsi: remove redundant CND0 opcode

Can be implemented with CMP src2, src1, src0

14 years agoscons: Tool for LLVM. Gracefully disable llvmpipe if LLVM not found.
José Fonseca [Tue, 1 Sep 2009 11:22:52 +0000 (12:22 +0100)]
scons: Tool for LLVM. Gracefully disable llvmpipe if LLVM not found.

14 years agotrace: Don't set surface_[fill|copy] if not set on pipe
Jakob Bornecrantz [Tue, 1 Sep 2009 09:56:14 +0000 (11:56 +0200)]
trace: Don't set surface_[fill|copy] if not set on pipe

14 years agor300g: Fix clear issue on r300
Cooper Yuan [Tue, 1 Sep 2009 09:59:03 +0000 (17:59 +0800)]
r300g: Fix clear issue on r300

14 years agoradeon: fix r100/r200 polygon stipple under kms
Dave Airlie [Tue, 1 Sep 2009 06:04:39 +0000 (16:04 +1000)]
radeon: fix r100/r200 polygon stipple under kms

There really need to use state emits under kms, otherwise
we end up with some dwords in the command buffer before we've
ever emitted any useful state.

Signed-off-by: Dave Airlie <airlied@redhat.com>
14 years agor100: fixup cubemap domains
Dave Airlie [Tue, 1 Sep 2009 05:18:17 +0000 (15:18 +1000)]
r100: fixup cubemap domains

14 years agoxlib: plug in more meta functions, if TEST_META_FUNCS is set
Brian Paul [Tue, 1 Sep 2009 03:14:50 +0000 (21:14 -0600)]
xlib: plug in more meta functions, if TEST_META_FUNCS is set

14 years agomesa: implement GL_DEPTH_BUFFER_BIT for _mesa_meta_blit_framebuffer()
Brian Paul [Tue, 1 Sep 2009 03:13:41 +0000 (21:13 -0600)]
mesa: implement GL_DEPTH_BUFFER_BIT for _mesa_meta_blit_framebuffer()

14 years agomesa: disable another debug test
Brian Paul [Tue, 1 Sep 2009 02:25:10 +0000 (20:25 -0600)]
mesa: disable another debug test

14 years agomesa: make verts[] arrays local vars
Brian Paul [Tue, 1 Sep 2009 01:49:40 +0000 (19:49 -0600)]
mesa: make verts[] arrays local vars

14 years agor200: emit cube for kms correctly + fix tex emit reset
Dave Airlie [Tue, 1 Sep 2009 02:15:32 +0000 (12:15 +1000)]
r200: emit cube for kms correctly + fix tex emit reset

CS checker found some issues.

14 years agoxlib: option to enable/test meta functions (disabled)
Brian Paul [Tue, 1 Sep 2009 01:29:24 +0000 (19:29 -0600)]
xlib: option to enable/test meta functions (disabled)

14 years agomesa: implement depth/stencil formats for meta glDrawPixels
Brian Paul [Tue, 1 Sep 2009 01:28:11 +0000 (19:28 -0600)]
mesa: implement depth/stencil formats for meta glDrawPixels

14 years agomesa: remove accidentally commited debug/disabled code
Brian Paul [Tue, 1 Sep 2009 01:27:42 +0000 (19:27 -0600)]
mesa: remove accidentally commited debug/disabled code

14 years agomesa: added _mesa_is_stencil_format()
Brian Paul [Tue, 1 Sep 2009 01:26:00 +0000 (19:26 -0600)]
mesa: added _mesa_is_stencil_format()

14 years agoprogs/samples: added test/debug code for culling
Brian Paul [Mon, 31 Aug 2009 23:56:41 +0000 (17:56 -0600)]
progs/samples: added test/debug code for culling

14 years agoswrast: fix selection/feedback regression
Brian Paul [Mon, 31 Aug 2009 23:54:46 +0000 (17:54 -0600)]
swrast: fix selection/feedback regression

This fixes a conform selection/feedback regression introduced by commit
8f4d66c5f893b49eb3973aa3b31a856314c045c7

14 years agomesa: debug printf for KIL
Brian Paul [Mon, 31 Aug 2009 20:57:59 +0000 (14:57 -0600)]
mesa: debug printf for KIL

14 years agoprogs/tests: disable depth test for second glDrawPixels
Brian Paul [Mon, 31 Aug 2009 20:56:34 +0000 (14:56 -0600)]
progs/tests: disable depth test for second glDrawPixels

We don't want to z-test that glDrawPixels.  Also, set the raster color to
red when drawing GL_DEPTH_COMPONENT image to aid in debugging.

14 years agoswrast: can't use deferred texture/shading if using KIL instruction
Brian Paul [Mon, 31 Aug 2009 19:28:31 +0000 (13:28 -0600)]
swrast: can't use deferred texture/shading if using KIL instruction

If the fragment program uses KIL, we have to execute it before z/stencil
testing.  Otherwise, deferred texture/shading lets us skip shading for
pixels that fail z/stencil testing.

14 years agor300/compiler: fix warning due to no newline
Dave Airlie [Tue, 1 Sep 2009 00:50:40 +0000 (10:50 +1000)]
r300/compiler: fix warning due to no newline

14 years agor200: emit max vtx info for index buffer.
Dave Airlie [Tue, 1 Sep 2009 00:12:20 +0000 (10:12 +1000)]
r200: emit max vtx info for index buffer.

We need this for the CS bounds checking.

14 years agoi915g: Implement new winsys
Jakob Bornecrantz [Mon, 31 Aug 2009 23:42:39 +0000 (00:42 +0100)]
i915g: Implement new winsys

14 years agoi915g: Switch from pipe_winsys to intel_winsys
Jakob Bornecrantz [Sun, 30 Aug 2009 19:49:01 +0000 (20:49 +0100)]
i915g: Switch from pipe_winsys to intel_winsys

Also includes moving lots of functions from i915_batch.h
into intel_batchbuffer.h

14 years agoi915g: Add header file for new winsys interface
Jakob Bornecrantz [Sun, 30 Aug 2009 17:30:35 +0000 (18:30 +0100)]
i915g: Add header file for new winsys interface

14 years agoi915g: Add new buffer code not yet hocked up
Jakob Bornecrantz [Sun, 30 Aug 2009 15:26:01 +0000 (16:26 +0100)]
i915g: Add new buffer code not yet hocked up

14 years agost/xorg: Fix crash in MPH
Jakob Bornecrantz [Mon, 31 Aug 2009 23:24:53 +0000 (00:24 +0100)]
st/xorg: Fix crash in MPH

14 years agoradeon: Fix null pointer reference in debug system if no context is bind.
Pauli Nieminen [Mon, 31 Aug 2009 21:39:20 +0000 (00:39 +0300)]
radeon: Fix null pointer reference in debug system if no context is bind.

14 years agor600: Add more trace debug output to rendering pipeline.
Pauli Nieminen [Mon, 31 Aug 2009 17:44:11 +0000 (20:44 +0300)]
r600: Add more trace debug output to rendering pipeline.

14 years agoradeon: Add support for indenting debug output.
Pauli Nieminen [Mon, 31 Aug 2009 17:25:33 +0000 (20:25 +0300)]
radeon: Add support for indenting debug output.

Indetion can be used to make it easier to read debug code when sections of debug output are indented.

14 years agoradeon: Add comment warning about not choosing critical debug level.
Pauli Nieminen [Sun, 30 Aug 2009 20:58:45 +0000 (23:58 +0300)]
radeon: Add comment warning about not choosing critical debug level.

14 years agoradeon: Change default debug level to verbose.
Pauli Nieminen [Sun, 30 Aug 2009 20:46:58 +0000 (23:46 +0300)]
radeon: Change default debug level to verbose.

Verbose is a lot better for developement but we should considre changing it to normal in stable branch.

14 years agor300: Convert to shared debug code.
Pauli Nieminen [Sun, 30 Aug 2009 20:39:15 +0000 (23:39 +0300)]
r300: Convert to shared debug code.

14 years agor200: Convert r200 to use new style debug code.
Pauli Nieminen [Sun, 30 Aug 2009 20:06:05 +0000 (23:06 +0300)]
r200: Convert r200 to use new style debug code.

Only very few places where realy converted so there isa lot of to do.

14 years agor600: Convert to shared debug code and add a few new debug messages.
Pauli Nieminen [Sun, 30 Aug 2009 19:08:38 +0000 (22:08 +0300)]
r600: Convert to shared debug code and add a few new debug messages.

There is only a few functions that have debugging enabled now.

14 years agoradeon: Make OQ to use new style debugging.
Pauli Nieminen [Sun, 30 Aug 2009 19:07:49 +0000 (22:07 +0300)]
radeon: Make OQ to use new style debugging.

14 years agoradeon: Add gcc attribute to enable pritnf format warnings.
Pauli Nieminen [Sun, 30 Aug 2009 19:07:13 +0000 (22:07 +0300)]
radeon: Add gcc attribute to enable pritnf format warnings.

14 years agor100: Use shared debug code.
Pauli Nieminen [Sun, 30 Aug 2009 16:44:16 +0000 (19:44 +0300)]
r100: Use shared debug code.

Converted r100 to use shared debug code with sed and fast compile check. New
code has compability layer so old debugging code doesn't have to be changed
all immidiatly.

14 years agoradeon: Add common debugging functions.
Pauli Nieminen [Sun, 30 Aug 2009 13:48:33 +0000 (16:48 +0300)]
radeon: Add common debugging functions.

These function are aiming to make it very simple to add and keep large amount
of debugging code without having runtime impact in relase builds. Basic idea
is to expose simple printf style debugging functions that are inlined.

Level parameter will be evalueted in compile time so compiler can optimise
some of debugging functions out if compile time request for debug level is too
tight.

14 years agomesa: added const qualifiers, move local var
Brian Paul [Mon, 31 Aug 2009 17:17:59 +0000 (11:17 -0600)]
mesa: added const qualifiers, move local var

14 years agomesa: fix saturation logic in emit_texenv()
Brian Paul [Mon, 31 Aug 2009 17:14:16 +0000 (11:14 -0600)]
mesa: fix saturation logic in emit_texenv()

We need to clamp/saturate after each texenv stage, not just the last one.
Fixes glean texEnv failure for softpipe (and probably other fragment program-
based drivers).

14 years agodocs: fixed glXCreateGLXPixmap() for direct rendering
Brian Paul [Mon, 31 Aug 2009 16:32:56 +0000 (10:32 -0600)]
docs: fixed glXCreateGLXPixmap() for direct rendering

14 years agodocs/: document cross-compile fix
Brian Paul [Mon, 31 Aug 2009 16:31:45 +0000 (10:31 -0600)]
docs/: document cross-compile fix

14 years agomesa: fix 32bit cross compilation on a 64bit machine
Marc Dietrich [Mon, 31 Aug 2009 15:56:33 +0000 (08:56 -0700)]
mesa: fix 32bit cross compilation on a 64bit machine

When cross compiling on a 64bit machine, gen_matypes.c is build
for the host machine (64bit) but must generates code for the target
machine (32bit). This causes wrong offsets all over the place and
crashes googleearth on my machine. Solution is to add -m32 when
cross compiling.

Attached patch is compatible with linux-x86-32 and autoconf based
builds.

14 years agost/xorg: add code to render textured quads for composite acceleration
Zack Rusin [Fri, 28 Aug 2009 21:19:23 +0000 (17:19 -0400)]
st/xorg: add code to render textured quads for composite acceleration