summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/intel_pixel_copy.c
Commit message (Collapse)AuthorAgeFilesLines
* i965: Use the shared intel_pixel_copy.c.Eric Anholt2008-06-241-318/+1
| | | | | | | | This disables the textured copy implementation on 965, which didn't appear to work (mesa copypix demo, disable the blit path, move so that regions don't overlap and textured is used, and you get garbage). If we resurrect this for i965, I'd rather it used the 915-style metaops instead. Current metaops code left in place so that whoever picks it up has a reference.
* intel: Avoid glBitmap software fallback for blending when no blending occurs.Eric Anholt2008-06-241-1/+1
| | | | | Mesa demos tend to leave blending on but in GL_ONE/GL_ZERO, or GL_SRC_ALPHA/GL_ONE_MINUS_SRC_ALPHA with a source alpha of 1.0.
* intel: Merge check_blit_fragment_ops between i915/i965.Eric Anholt2008-06-241-28/+0
| | | | Both had some useful bits for the other.
* Merge {i915,i965}/intel_context.h as intel/intel_context.hKristian Høgsberg2008-02-221-0/+2
|
* [intel] Remove the dead intel->need_flush member.Eric Anholt2008-01-091-1/+0
|
* [965] Enable EXT_framebuffer_object.Eric Anholt2007-12-201-1/+1
| | | | | To do so, merge the remainnig necessary code from the buffers, blit, span, and screen code to shared, and replace it with those.
* [965] Convert DBG macro to use FILE_DEBUG_FLAG like i915.Eric Anholt2007-11-191-0/+1
|
* i965: store read drawable info in intel_context. Some OpenGLXiang, Haihao2007-08-291-2/+3
| | | | operations are based on read drawable. fix bug#10136.
* Structure CopyPixels similarly to i915 do_texture_copypixels, to ease future ↵Gary Wong2006-12-021-63/+101
| | | | unification.
* Add accelerated CopyPixels for non-overlapping, 1:1 blits.Eric Anholt2006-11-291-2/+65
| | | | Submitted by Gary Wong <gtw@gnu.org>
* Gary Wong's patches for CopyPixels Logiop (enable) and BlendKeith Whitwell2006-11-211-3/+5
| | | | | | (disallow). Slightly cleaned to disallow on all blend states for code consiseness and turn a table lookup into a function to match other code in the driver.
* Accelerate glBitmap with a color expand blit. Nice speedup for demosKeith Whitwell2006-10-051-4/+5
| | | | like 'fire' that display a help message or fps number this way.
* add accelerated glCopyPixels pathKeith Whitwell2006-09-201-0/+239