History log of /external/mesa3d/src/mesa/swrast/s_copypix.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
04aa8b58a09e3b415916fa569111c1f76d07a8d5 13-Jul-2015 Matt Turner <mattst88@gmail.com> swrast: Avoid double promotion.

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
ca21c9ab28df24ef015ead28df1dcccd90387df6 10-Jun-2015 Anuj Phogat <anuj.phogat@gmail.com> mesa/swrast: Use global function _mesa_regions_overlap()

Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
8ac9407a835ee892d96f326b0c56967046cbb982 01-Apr-2015 Brian Paul <brianp@vmware.com> swrast: remove unneeded #include of colormac.h

Acked-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Mark Janes <mark.a.janes@intel.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
bfcdb843830bba0190e00e35e3c5c18c4bdb5de1 21-Feb-2015 Matt Turner <mattst88@gmail.com> mesa: Use assert() instead of ASSERT wrapper.

Acked-by: Eric Anholt <eric@anholt.net>
/external/mesa3d/src/mesa/swrast/s_copypix.c
e9b86cb5d66867b66c6d453d7bd60bd56fe6587d 02-Feb-2015 Laura Ekstrand <laura@jlekstrand.net> swrast: Whitespace fixes.

Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
e187c2f5432466c7b49dba266026fb9b01f5f667 30-Jan-2015 Laura Ekstrand <laura@jlekstrand.net> DD: Refactor BlitFramebuffer.

In preparation for glBlitNamedFramebuffer, the DD table function
BlitFramebuffer needs to accept two arbitrary framebuffer objects rather
than assuming ctx->ReadBuffer and ctx->DrawBuffer.

Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
3998cfa933dcd9134b75d9f0ae2c9cfcd6f2ee45 05-Jun-2013 Rico Schüller <kgbricola@web.de> mesa: remove outdated version lines in comments

Signed-off-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
3d8d5b298a268b119d840bc9bae0ee9e0c9244a9 21-Apr-2013 Kenneth Graunke <kenneth@whitecape.org> mesa: Restore 78-column wrapping of license text in C-style comments.

The previous commit introduced extra words, breaking the formatting.

This text transformation was done automatically via the following shell
command:
$ git grep 'THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY' | sed 's/:.*$//' | xargs -I {} sh -c 'vim -e -s {} < vimscript

where 'vimscript' is a file containing:
/THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY/;/\*\// !fmt -w 78 -p ' * '
:wq

Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
96ff2edc73ccf11d4d198ba3665507f73ae4a9f7 21-Apr-2013 Kenneth Graunke <kenneth@whitecape.org> mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.

This brings the license text in line with the MIT License as published
on the Open Source Initiative website:

http://opensource.org/licenses/mit-license.php

Generated automatically be the following shell command:
$ git grep 'THE AUTHORS BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \
sed -i 's/THE AUTHORS/THE AUTHORS OR COPYRIGHT HOLDERS/' {}

This introduces some wrapping issues, to be fixed in the next commit.

Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
dd404bc94f78a1766527becee03f8ef6ae3a799b 21-Apr-2013 Kenneth Graunke <kenneth@whitecape.org> mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.

Generated automatically be the following shell command:
$ git grep 'BRIAN PAUL BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \
sed -i 's/BRIAN PAUL/THE AUTHORS/' {}

The intention here is to protect all authors, not just Brian Paul. I
believe that was already the sensible interpretation, but spelling it
out is probably better.

More practically, it also prevents people from accidentally copy &
pasting the license into a new file which says Brian is not liable when
he isn't even one of the authors.

Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
eed6baf7621fa94e7888f8079b155fc67a08540c 23-Feb-2013 Paul Berry <stereotype441@gmail.com> Replace gl_frag_attrib enum with gl_varying_slot.

This patch makes the following search-and-replace changes:

gl_frag_attrib -> gl_varying_slot
FRAG_ATTRIB_* -> VARYING_SLOT_*
FRAG_BIT_* -> VARYING_BIT_*

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
Tested-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
2b7a972e3f36bfcdc6fbe2b59d7ffdcde49c9405 04-Sep-2012 Matt Turner <mattst88@gmail.com> Don't cast the return value of malloc/realloc

This patch has been generated by the following Coccinelle semantic
patch:

// Don't cast the return value of malloc/realloc.
//
// Casting the return value of malloc/realloc only stands to hide
// errors.

@@
type T;
expression E1, E2;
@@
- (T)
(
_mesa_align_calloc(E1, E2)
|
_mesa_align_malloc(E1, E2)
|
calloc(E1, E2)
|
malloc(E1)
|
realloc(E1, E2)
)
/external/mesa3d/src/mesa/swrast/s_copypix.c
47d88ef204b42a9220c6be3e98c92df9c9aa0860 20-Feb-2012 Brian Paul <brianp@vmware.com> swrast: define, use SWRAST_MAX_WIDTH/HEIGHT

We'll get rid of MAX_WIDTH, MAX_HEIGHT soon.
/external/mesa3d/src/mesa/swrast/s_copypix.c
837b55517ecc1964205e1eb10578b146529abd0b 20-Feb-2012 Brian Paul <brianp@vmware.com> swrast: remove MAX_WIDTH arrays in s_copypix.c
/external/mesa3d/src/mesa/swrast/s_copypix.c
0c1862851f27c428a18ba5509636efcc2f0084f8 16-Jan-2012 Brian Paul <brianp@vmware.com> swrast: use swrast_renderbuffer instead of gl_renderbuffer
/external/mesa3d/src/mesa/swrast/s_copypix.c
0ff817f200ef4cb4a5ab0d90eccfc83d0671fb65 16-Jan-2012 Brian Paul <brianp@vmware.com> swrast: stop using Put/GetRow/Values() in swrast code

All color buffer rendering is now done by accessing mapped renderbuffer
memory. We're now able to get rid of all the GetRow/PutRow stuff.
/external/mesa3d/src/mesa/swrast/s_copypix.c
267fb178844d3f17503dd0f921791f3ab059c4e7 16-Jan-2012 Brian Paul <brianp@vmware.com> swrast: remove dstType param from _swrast_read_rgba_span()

It was always GL_FLOAT.
/external/mesa3d/src/mesa/swrast/s_copypix.c
38c6f1e6caf097c0aefc7a9b161e9da3d5235ea9 05-Jan-2012 Eric Anholt <eric@anholt.net> swrast: Fix use of uninitialized value in rbmapping changes.

I'm so surprised that gcc didn't catch this that I feel like I must be
misreading. srcMap is what we initialize (along with dstMap) from
this map value right after this check.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
fb5252a3518dadd51e88e87382e6510998e9e2f4 05-Jan-2012 Eric Anholt <eric@anholt.net> swrast: Use the fast copypixels code to implement fast glBlitFramebuffer().

They were meaning to do the same thing of memcpying rows, so just
write the code once.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
cedbfc0050af7391b6c8ed54abaa60898208f99d 05-Jan-2012 Eric Anholt <eric@anholt.net> swrast: Move the check for fast_copy_pixels() ability to caller.

I'm going to reuse this function from glBlitFramebuffer() handling,
which wants to do the same thing.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
826f36b1d8ae3881e6095d905fd10a7070742098 24-Dec-2011 Brian Paul <brianp@vmware.com> swrast: remove the copy_depth_stencil_pixels() function

Hopefully glCopyPixels(GL_DEPTH_STENCIL) will be handled by the
fast copy function. Otherwise, just do the copy with separate
depth + stencil copies. That's effectively what the removed code
did anyway.

Reviewed-by: Eric Anholt <eric@anholt.net>
/external/mesa3d/src/mesa/swrast/s_copypix.c
e6c6b1c147f5079a1608234294e2b6cd29dd2a64 24-Dec-2011 Brian Paul <brianp@vmware.com> swrast: stop using depth/stencil wrappers in CopyPixels code

The functions that read depth/stencil values understand all (packed)
depth/stencil buffer formats now so there's no reason to use the
wrappers.

Also, improve the format checks in fast_copy_pixels() to catch mismatched
depth/stencil cases.

v2: fix the test for combined depth+stencil buffers, per Eric.
/external/mesa3d/src/mesa/swrast/s_copypix.c
89fb81d521bdcd341a88d2bf54ae3d79ad232cca 24-Dec-2011 Brian Paul <brianp@vmware.com> swrast: do fast_copy_pixels() with Map/UnmapRenderbuffer()

v2: use memmove() instead of memcpy() in case of overlap

Reviewed-by: Eric Anholt <eric@anholt.net>
/external/mesa3d/src/mesa/swrast/s_copypix.c
24e648490921a386fc3f65d1b1ed330067a4bb25 06-Dec-2011 Brian Paul <brianp@vmware.com> swrast: use malloc instead of MAX_WIDTH arrays in glCopyPixels, zoom code

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
/external/mesa3d/src/mesa/swrast/s_copypix.c
6d68855df133bdd4891e8aa428787b520739e0fe 11-Nov-2011 Brian Paul <brianp@vmware.com> mesa: replace GLstencil with GLubyte
/external/mesa3d/src/mesa/swrast/s_copypix.c
1c131752c3e07ef91f49d4970dafca6d26585334 23-Oct-2010 Brian Paul <brianp@vmware.com> mesa: split up the image.c file

New files:
pack.c - image/row packing/unpacking functions
pixeltransfer.c - pixel scale/bias/lookup functions
/external/mesa3d/src/mesa/swrast/s_copypix.c
f9995b30756140724f41daf963fa06167912be7f 12-Oct-2010 Kristian Høgsberg <krh@bitplanet.net> Drop GLcontext typedef and use struct gl_context instead
/external/mesa3d/src/mesa/swrast/s_copypix.c
a62efdf82c20747feb11dfd7756f0579aa914b57 10-Sep-2010 Eric Anholt <eric@anholt.net> mesa: Remove EXT_convolution.

More optional code.
/external/mesa3d/src/mesa/swrast/s_copypix.c
7126e38d9037da66fd531c4cb02b3843b68b84ff 10-Sep-2010 Eric Anholt <eric@anholt.net> mesa: Remove EXT_histogram.

This has always been optional, and not useful.
/external/mesa3d/src/mesa/swrast/s_copypix.c
e7e748cd04f5f014a1e4d8837ee7590d68115768 25-Feb-2010 Ian Romanick <ian.d.romanick@intel.com> swrast: Remove support for CopyPixels to / from a color-index buffer

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
/external/mesa3d/src/mesa/swrast/s_copypix.c
32f2fd1c5d6088692551c80352b7d6fa35b0cd09 19-Feb-2010 Kristian Høgsberg <krh@bitplanet.net> Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions
/external/mesa3d/src/mesa/swrast/s_copypix.c
c7ac486261ad30ef654f6d0b1608da4e8483cd40 19-Feb-2010 Kenneth Graunke <kenneth@whitecape.org> Remove _mesa_memcpy in favor of plain memcpy.

This may break the SUNOS4 build, but it's no longer relevant.
/external/mesa3d/src/mesa/swrast/s_copypix.c
b01ffb12ed82dcf435b186e2aff35e344a8a6ebe 14-Jan-2010 Jakob Bornecrantz <jakob@vmware.com> Merge branch 'mesa_7_7_branch'

Conflicts:
src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
src/gallium/auxiliary/util/Makefile
src/gallium/drivers/r300/r300_state_derived.c
886cffb44e92dcdaeb5396a01745e78598e86a3f 14-Jan-2010 Vinson Lee <vlee@vmware.com> swrast: Remove unnecessary headers from s_copypix.c.
/external/mesa3d/src/mesa/swrast/s_copypix.c
ab26682eb4db0dbe160b13f1e320ec9164c3afc5 31-Dec-2009 Brian Paul <brianp@vmware.com> swrast: add check for conditional rendering
/external/mesa3d/src/mesa/swrast/s_copypix.c
2d5b86be25a7ccb729e746aa5e1bdd537d76df68 30-Jan-2009 Brian Paul <brianp@vmware.com> swrast: replace RENDER_START/FINISH macros with inline functions
/external/mesa3d/src/mesa/swrast/s_copypix.c
bbd287103dad776d8a45c87c4e51fbc26d9b80d5 18-Sep-2008 Brian Paul <brian.paul@tungstengraphics.com> mesa: prefix a bunch of #include lines with "main/".

This is another step toward removing a whole bunch of -I flags from
the cc commands. Still need to address driver code...
/external/mesa3d/src/mesa/swrast/s_copypix.c
ff73c783cc47361ff0dd819c82d067b4b85870dd 06-Jan-2008 Brian <brian.paul@tungstengraphics.com> Simplify ctx->_NumColorDrawBuffers, _ColorDrawBuffers and fix bug 13835.

These fields are no longer indexed by shader output. Now, we just have
a simple array of renderbuffer pointers.

If the shader writes to gl_FragData[i], send those colors to the N
_ColorDrawBuffers. Otherwise, replicate the single gl_FragColor (or
the fixed-function color) to the N _ColorDrawBuffers.

A few more changes and simplifications can follow from this...
/external/mesa3d/src/mesa/swrast/s_copypix.c
032707eeca2e6a0fd931ebd9ef4831bf30baf183 14-Sep-2007 Brian <brian.paul@tungstengraphics.com> fix copypixels overlap test bug (#12417)
/external/mesa3d/src/mesa/swrast/s_copypix.c
f4b103dc993491355ec3e3640d9cb060138175c2 30-Jun-2007 Brian <brian.paul@tungstengraphics.com> simplify INIT_SPAN code
/external/mesa3d/src/mesa/swrast/s_copypix.c
9dca42a4a10acbf1980c0f2eafb3e28e11ca1bf3 30-Jun-2007 Brian <brian.paul@tungstengraphics.com> Undo some prev glDraw/CopyPixel changes which fixed a bug in which colors were overwritten by interpolating attributes.

Now just set the span->arrayAttribs mask in glDraw/CopyPixels and be sure
we don't overwrite the values in interpolate_active_attribs().
/external/mesa3d/src/mesa/swrast/s_copypix.c
171dcdfa27dda30916a7f9bfed89577feee5d350 21-Jun-2007 Brian <brian@i915.localnet.net> Another round of fixing attribute interpolation for glDraw/CopyPixels.

Need to turn off FRAG_BIT_COL0 in swrast->_ActiveAttribMask when doing
glRead/CopyPixels to prevent the user's colors from getting overwritten
when a fragment program is active.
This was happening in the DRI drivers when MaintainTexEnv program was
used (the texenv fragment program was enabled when _swrast_DrawPixels was
called).
This still isn't an ideal solution, but fixes things for now.
/external/mesa3d/src/mesa/swrast/s_copypix.c
9e8a961dd7d7b717a9fb4ecdea1c1b60ea355efe 20-May-2007 Brian <brian@yutani.localnet.net> Overhaul/simplify SWvertex and SWspan attribute handling.

Instead of separate fog/specular/texcoord/varying code, just treat all of
them as generic attributes. Simplifies the point/line/triangle functions.
/external/mesa3d/src/mesa/swrast/s_copypix.c
f793e90e823a58c0408771c38f3a6209f78a3617 21-Apr-2007 Brian <brian@yutani.localnet.net> Fix color sum bug 10688.
/external/mesa3d/src/mesa/swrast/s_copypix.c
b61d74c57589cf22f003ac7f9db3aa47fd1b3cb2 11-Apr-2007 Brian <brian@yutani.localnet.net> as with prev commit, also fix color index mode zoomed depth copies (bug 10608)
/external/mesa3d/src/mesa/swrast/s_copypix.c
183d8e06206dd264adabdf8d6b6ad06143d237e8 11-Apr-2007 Brian <brian@yutani.localnet.net> fix zoomed depth copies (bug 10608)
/external/mesa3d/src/mesa/swrast/s_copypix.c
51a894e6ebc3412a6d634a7378806f137374b09a 06-Apr-2007 Brian <brian@nostromo.localnet.net> fix color storage bug in convolution path
/external/mesa3d/src/mesa/swrast/s_copypix.c
d4dc57bb13386f4503000dc34c6bf67a8387fc9f 04-Apr-2007 Brian <brian@yutani.localnet.net> Overlapping copies with zoomZ=-1 were broken. See bug 10521.

Need to check for overlapping src/dest regions before computing bottom-to-top
vs. top-to-bottom order.
/external/mesa3d/src/mesa/swrast/s_copypix.c
38a1c2b4959d35236933c14d3944cce94283ca30 26-Mar-2007 Brian <brian@yutani.localnet.net> Add _swrast_span_default_secondary_color() for use with glBitmap, glDrawPixels, etc.

Secondary color wasn't getting added to post-texture color when drawing
bitmaps, images. See bug 10409.
/external/mesa3d/src/mesa/swrast/s_copypix.c
23d31efc167f09d47635352f697ffcb087d3ebbd 21-Mar-2007 Brian <brian@yutani.localnet.net> merge from master
249b451d2068c781d29a6527e152b39d08b1c877 21-Mar-2007 Brian <brian@yutani.localnet.net> 1D convolution (and post-conv scale/bias) were inadvertantly applied to 2D image transfers.
/external/mesa3d/src/mesa/swrast/s_copypix.c
29c471aafc6a3fef23d553e31a555d1782854a77 22-Feb-2007 Brian <brian@yutani.localnet.net> Merge branch 'origin' into glsl-compiler-1

Conflicts:

src/mesa/main/state.c
src/mesa/shader/program.c
src/mesa/shader/program.h
src/mesa/shader/programopt.c
src/mesa/shader/slang/slang_execute.c
src/mesa/sources
src/mesa/swrast/s_arbshader.c
src/mesa/swrast/s_context.c
src/mesa/swrast/s_span.c
src/mesa/swrast/s_zoom.c
src/mesa/tnl/t_context.c
src/mesa/tnl/t_save_api.c
src/mesa/tnl/t_vb_arbprogram.c
src/mesa/tnl/t_vp_build.c
src/mesa/tnl/t_vtx_eval.c
f3e507ef9f75dbfc58ccd07b5fe8cfca10d9a9e3 01-Feb-2007 Brian <brian@yutani.localnet.net> New SWspanarrays attribs[] array.

Replace texcoord[], varying[], etc. arrays with single attribs[] array, indexed
by FRAG_ATTRIB_* values.
Eliminates need to copy data into fragment program machine input registers.
Will lead to future clean-ups.
/external/mesa3d/src/mesa/swrast/s_copypix.c
18d1fdebebcb52e7fcf50e62c4c02862d173af51 23-Jan-2007 Brian <brian@nostromo.localnet.net> fixes for C++ warnings/errors
/external/mesa3d/src/mesa/swrast/s_copypix.c
ec9bbac7c7f42261de9df6f4029d7e051ae9225c 23-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> silence used var warnings
/external/mesa3d/src/mesa/swrast/s_copypix.c
2b46f4b85330a579ae919f3f31af1550b5affdee 14-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> cut and paste error: s/Width/Height/
/external/mesa3d/src/mesa/swrast/s_copypix.c
5b0edff412f45fe64bd42fb481adeda7d34b0fa8 13-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> Consolidate, move, fix code related to color index and stencil image transfer
operations (shift, offset, table lookup, etc).
/external/mesa3d/src/mesa/swrast/s_copypix.c
8a9b5518fb946462fe55a62c1da1cab94d6d12cc 13-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> s/GLuint/GLbitfield/
/external/mesa3d/src/mesa/swrast/s_copypix.c
76e778dce59aa6f290db50242df945943fc47b05 13-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> Lots of changes to support runtime renderbuffer depths.
_swrast_read_rgba_span() now takes a datatype parameter.
New optimization for glReadPixels(format=GL_RGB).
New glCopyPixels optimization for the simple, common cases.
/external/mesa3d/src/mesa/swrast/s_copypix.c
8a5871a98c23ce1a1d893b681f59dc8c42228dd1 12-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> use GLvoid * for _swrast_write_zoomed_rgb/rgba_span() functions
/external/mesa3d/src/mesa/swrast/s_copypix.c
cdb27e8242215271364602995d85607cfc06d441 01-Oct-2006 Brian Paul <brian.paul@tungstengraphics.com> New SWspan and SWspanarrays typedefs.
/external/mesa3d/src/mesa/swrast/s_copypix.c
0c7cbf0a7cbba93e4bcb2f0fdd0a7ea2ef4ebc94 07-May-2006 Brian Paul <brian.paul@tungstengraphics.com> Check for overflow when converting floating pt Z values to 32-bit GLuint.
/external/mesa3d/src/mesa/swrast/s_copypix.c
1add059bd114f90e32c4b574be411d314eca6d90 14-Dec-2005 Brian Paul <brian.paul@tungstengraphics.com> Removed the GL_SGIX/SGIS_pixel_texture extensions. Same thing can be
done with fragment programs nowadays.
/external/mesa3d/src/mesa/swrast/s_copypix.c
5ba41dfa81d9c94a9f5a92fcf6d4138ba247f53f 17-Nov-2005 Brian Paul <brian.paul@tungstengraphics.com> s/MEMCPY/_mesa_memcpy/ and fix typo
/external/mesa3d/src/mesa/swrast/s_copypix.c
1a5f1bdb428ea3ded1e77796590014f89fe78f77 16-Nov-2005 Brian Paul <brian.paul@tungstengraphics.com> Use new gl_framebuffer _Depth/_StencilBuffer fields instead of
Attachment[BUFFER_DEPTH/STENCIL].Renderbuffer. The former may be wrappers
around combined depth/stencil renderbuffers attached at the later points.
/external/mesa3d/src/mesa/swrast/s_copypix.c
dcf4c17fb1624af47181c63af4c3ad29f919c17a 31-Oct-2005 Brian Paul <brian.paul@tungstengraphics.com> check swrast->_FogEnabled instead of ctx->Fog.Enabled
/external/mesa3d/src/mesa/swrast/s_copypix.c
b2404b132dd7fc1058851d56414f9c1be17f0a2f 29-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> implement CopyPixels for GL_DEPTH_STENCIL_EXT
/external/mesa3d/src/mesa/swrast/s_copypix.c
8d0edf015d82a705796389890f6fe9b32e19414c 29-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> Rewrite much of the pixel zoom code.
Zoomed DrawPixels of packed depth/stencil works now.
/external/mesa3d/src/mesa/swrast/s_copypix.c
1ad7b99925e044f82e635f746c1ef2df77f69ac9 28-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> Initial work for GL_EXT_packed_depth_stencil extension.
glReadPixels done, glDrawPixels mostly done.
/external/mesa3d/src/mesa/swrast/s_copypix.c
99796464c5f0fdb463c31a0e99b0896089b8bd80 27-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> Lift all the format/type error checking out of the _swrast_Draw/Read/CopyPixels
functions into the _mesa_Draw/Read/CopyPixels functions.
/external/mesa3d/src/mesa/swrast/s_copypix.c
f1e2826856d7df00d0e98106b93ddab51b26ff04 22-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> When testing visual attributes, use the Draw/Read buffer, not the context.
/external/mesa3d/src/mesa/swrast/s_copypix.c
3e37bafab0a339021354b9c78f983d05d433d735 21-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> replace GLdepth with GLuint and remove GLdepth
/external/mesa3d/src/mesa/swrast/s_copypix.c
55187ea63e980b32c7a701855571332f4357d634 15-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> Update includes post-splitting of s_texture.c
/external/mesa3d/src/mesa/swrast/s_copypix.c
3622f4f27fe51edff0717e4a42623f62e2936e90 06-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> don't use DEFARRAY/CHECKARRAY stuff
/external/mesa3d/src/mesa/swrast/s_copypix.c
acafeeb6dce74382fb3a48b83ab72bf67b7581ea 03-Sep-2005 Brian Paul <brian.paul@tungstengraphics.com> Remove last remnants of pre-renderbuffer code.
/external/mesa3d/src/mesa/swrast/s_copypix.c
3fe9c40cb27b23d44e938a19fbf4f21e1b1e288b 02-Jun-2005 Brian Paul <brian.paul@tungstengraphics.com> Remove last of the old span code.
/external/mesa3d/src/mesa/swrast/s_copypix.c
e4b2356c07d31fbeeabb13b2fb47db703b473080 04-May-2005 Brian Paul <brian.paul@tungstengraphics.com> Major check-in of changes for GL_EXT_framebuffer_object extension.
Main driver impacts:
- new code for creating the Mesa GLframebuffer
- new span/pixel read/write code
Some drivers not yet updated/tested.
/external/mesa3d/src/mesa/swrast/s_copypix.c
051cf9df6a729fcac37e054fd0632521e990c3ae 01-Nov-2004 Brian Paul <brian.paul@tungstengraphics.com> fix convolution regression from revision 1.48 to 1.49
/external/mesa3d/src/mesa/swrast/s_copypix.c
53f82c5aadbb15585754bfacf3237093eccdb2ce 02-Oct-2004 Brian Paul <brian.paul@tungstengraphics.com> added support for GL_ARB_draw_buffers
/external/mesa3d/src/mesa/swrast/s_copypix.c
4923e1926ad7b7eb7de017eda8e7db64d357e5c8 28-Feb-2004 Brian Paul <brian.paul@tungstengraphics.com> Remove clamp parameter from _mesa_unpack_color_span_float(). Pass the
IMAGE_CLAMP_BIT if needed.
Added ClampVertexColors and ClampFragmentColors to GLcontext in anticipation
of upcoming extensions (not fully used yet).
/external/mesa3d/src/mesa/swrast/s_copypix.c
833d96aa913dcb0c5ca085cc7ebee3df90f7fbf8 28-Feb-2004 Brian Paul <brian.paul@tungstengraphics.com> consolidate image transfer operations in new _mesa_apply_rgba_transfer_ops() function
/external/mesa3d/src/mesa/swrast/s_copypix.c
d0582776a619cc0633a0cbeea010a0db5e3e210f 28-Feb-2004 Brian Paul <brian.paul@tungstengraphics.com> move _swrast_texture_table_lookup() to _mesa_lookup_rgba_chan()
/external/mesa3d/src/mesa/swrast/s_copypix.c
a6ad01c14e8b7d819783d81c1febfa8e72063bf3 05-Dec-2003 Brian Paul <brian.paul@tungstengraphics.com> Fix a front/back CopyPixels glitch.
/external/mesa3d/src/mesa/swrast/s_copypix.c
36a0a3252e1e20df69b53f70ba93bc74c4a4bf0e 08-Apr-2003 Brian Paul <brian.paul@tungstengraphics.com> Added ctx->Texture._EnabledCoordUnits bitfield.
Fixed some vertex array / vertex program glitches with glDrawElements.
Fixed some fragment program runtime bugs.
Non-trivial Cg programs are running now.
/external/mesa3d/src/mesa/swrast/s_copypix.c
45bc887da226403f2c41077e40ca38b6f60f1359 25-Mar-2003 Brian Paul <brian.paul@tungstengraphics.com> replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]
/external/mesa3d/src/mesa/swrast/s_copypix.c
6e179ad9efe2b9febec6411704b7b08f769c434f 05-Dec-2002 Brian Paul <brian.paul@tungstengraphics.com> clean-ups, comments
/external/mesa3d/src/mesa/swrast/s_copypix.c
4663bd50f1e2f219bd1b2a4d902b11b936512398 30-Oct-2002 Brian Paul <brian.paul@tungstengraphics.com> don't call abort()
/external/mesa3d/src/mesa/swrast/s_copypix.c
3c63452e64df7e10aa073c6c3b9492b1d7dabbb8 25-Oct-2002 Brian Paul <brian.paul@tungstengraphics.com> Header file clean-up:
1. Remove all.h and PC_HEADER junk.
2. Rolled mem.c and mem.h into imports.c and imports.h
3. Include imports.h instead of mem.h
Restore _mesa_create/initialize_context() to be like they were in 4.0.4
New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc.
/external/mesa3d/src/mesa/swrast/s_copypix.c
77df88727cb0a423dd5cb41498c2302d9df4fce7 07-Aug-2002 Brian Paul <brian.paul@tungstengraphics.com> struct sw_span is again allocated on the stack, but the arrays of span
data are broken out into a new struct span_arrays which is allocated
per-context (to avoid huge stack allocations - a problem on Windows).
This lets us use span.redStep instead of span->redStep (for example) to
hopefully get slightly better performance in the triangle functions.
/external/mesa3d/src/mesa/swrast/s_copypix.c
3b4fbbc129c711a5aec8d653d5c6eb2e195f947c 09-Jul-2002 Brian Paul <brian.paul@tungstengraphics.com> Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer()
indicates the read AND draw color buffer for all software rasterization.
Lots of related clean-ups. See RELNOTES-4.1 for details.
/external/mesa3d/src/mesa/swrast/s_copypix.c
8afe7de8deaf3c9613fd68b344de8c52b02b1879 15-Jun-2002 Brian Paul <brian.paul@tungstengraphics.com> Implemented GL_NV_texture_rectangle extension.
Replace struct gl_texure_object's Dimension w/ Target field.
Added _EnabledUnits to struct gl_texture_attrib - the _ReallyEnabled
field is obsolete, but still present for now. This effectively
removes the 8-texture units limit, 32 units now possible, but unlikely!
New TEXTURE_1D/2D/3D/CUBE/RECT_BIT tokens for unit->_ReallyEnabled field.
Updated device drivers to use ctx->Texture._EnabledUnits.
/external/mesa3d/src/mesa/swrast/s_copypix.c
bf80e1ed620836e2ca0dd3f7d2d4cb187d17563d 19-Apr-2002 Brian Paul <brian.paul@tungstengraphics.com> Allocate a sw_span struct in the swrast context instead of allocating it
on the stack frame in the point/line/triangle functions. (Klaus Niederkrueger)
This should solve the performance problem Karl found on Windows.
/external/mesa3d/src/mesa/swrast/s_copypix.c
a670c1280b78e6da3b298b61f623e4c733c6be94 19-Apr-2002 Brian Paul <brian.paul@tungstengraphics.com> casts to fix GLint/GLuint mismatches
/external/mesa3d/src/mesa/swrast/s_copypix.c
b7f5e92f1749ce4601a758f66ddc64959f11742b 12-Apr-2002 Brian Paul <brian.paul@tungstengraphics.com> Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive
type, width, interp mask and array mask.
/external/mesa3d/src/mesa/swrast/s_copypix.c
612fc012934d9ec61972c3cfd914923937339611 14-Mar-2002 Brian Paul <brian.paul@tungstengraphics.com> fixed pointer arithmetic error in glCopyPixels
/external/mesa3d/src/mesa/swrast/s_copypix.c
983bc3e018ad6a36f0feeac70974cb30a90698b8 17-Feb-2002 Brian Paul <brian.paul@tungstengraphics.com> don't include s_fog.h
/external/mesa3d/src/mesa/swrast/s_copypix.c
ceb39f4f8dc4863fde17d668c752533a2184476e 31-Jan-2002 Brian Paul <brian.paul@tungstengraphics.com> Clean-up and optimize alpha test code.
Major clean-up of pixel zoom code.
/external/mesa3d/src/mesa/swrast/s_copypix.c
6e1666437ea091ecc50ab2b56d87129318f641d2 28-Jan-2002 Brian Paul <brian.paul@tungstengraphics.com> Still more texture/span simplification and clean-up.
Updated comments, fixed indentation, etc.
/external/mesa3d/src/mesa/swrast/s_copypix.c
7956292a765910077f50352d7cd0174e1e66d26c 28-Jan-2002 Brian Paul <brian.paul@tungstengraphics.com> More span improvements. Removed _mesa_write_monocolor_span().
Removed last of span.filled* flags and Klaus's macros.
More simplification of triangle functions.
/external/mesa3d/src/mesa/swrast/s_copypix.c
2a182a98973edc9ecf2936b1288485bb2b3fa722 27-Jan-2002 Brian Paul <brian.paul@tungstengraphics.com> LOTS of changes, building upon Klaus's work.
struct sw_span is used throughout span/fragment processing.
This is leading to less code and more chances for optimization.
/external/mesa3d/src/mesa/swrast/s_copypix.c
72574b959c39981033069e367a12c5ae595dd93a 16-Jan-2002 Brian Paul <brian.paul@tungstengraphics.com> added another test in regions_overlap() (Klaus)
/external/mesa3d/src/mesa/swrast/s_copypix.c
9927f1978da8530416f699d084dda099720e43e6 10-Jan-2002 Brian Paul <brian.paul@tungstengraphics.com> Klaus's latest patches: change texcoord[3] to texcoord[4] everywhere
/external/mesa3d/src/mesa/swrast/s_copypix.c
10f30eb43835c57c00783390a02d72daf4f78e26 17-Dec-2001 Brian Paul <brian.paul@tungstengraphics.com> first checkpoint commit of Klaus's new span code (struct sw_span)
/external/mesa3d/src/mesa/swrast/s_copypix.c
86b842790b720cd6b1499ce8edca8a4e9c8dc029 14-Dec-2001 Brian Paul <brian.paul@tungstengraphics.com> vertex program check-in
/external/mesa3d/src/mesa/swrast/s_copypix.c
55180f4b9216f8feb86dd6ecb4426fc6394c54b3 23-Jul-2001 Brian Paul <brian.paul@tungstengraphics.com> GLubyte -> GLchan change
/external/mesa3d/src/mesa/swrast/s_copypix.c
f431a3fb4dc1bf860203d79e54657e3a62bc50df 13-Jul-2001 Brian Paul <brian.paul@tungstengraphics.com> assorted changes for supporting GLfloat color channels (not done)
/external/mesa3d/src/mesa/swrast/s_copypix.c
77a4754d73ae4b9f69e8a3b7fdb0f17cb000c84a 13-Jul-2001 Brian Paul <brian.paul@tungstengraphics.com> fixed two bad casts (Stephane Conversy)
/external/mesa3d/src/mesa/swrast/s_copypix.c
acc722d4b890da7ed0ede24751e2bcaf28cc1468 26-Jun-2001 Brian Paul <brian.paul@tungstengraphics.com> More raster fog coord fixes.
New truncate vs. floor comments in drawpixels.c
Added current raster secondary color state, not used yet.
/external/mesa3d/src/mesa/swrast/s_copypix.c
af197f5f8f182c04ab29cd3c7a18a0cb95a1d9b7 19-Jun-2001 Brian Paul <brian.paul@tungstengraphics.com> fix glDraw/CopyPixels w/ fog bug. minor fog code clean-ups.
/external/mesa3d/src/mesa/swrast/s_copypix.c
b5d3f2c52103c6bd834838695cd753ca26991bd6 30-May-2001 Brian Paul <brian.paul@tungstengraphics.com> added current raster fog coord and related code
/external/mesa3d/src/mesa/swrast/s_copypix.c
47cf442c1164b6b406117fccfb8b564602741ee3 16-May-2001 Brian Paul <brian.paul@tungstengraphics.com> use DEFARRAY, etc macros to work around 32k data limit on Macs (Tom Goon)
/external/mesa3d/src/mesa/swrast/s_copypix.c
5071b0812fc73bcba92e2b6fcbad2f53f063fc32 15-May-2001 Brian Paul <brian.paul@tungstengraphics.com> Apply antialiasing coverage factor to alpha after texture application,
not before.
/external/mesa3d/src/mesa/swrast/s_copypix.c
709892459922a32096fe9dd8261d0d92337bb02f 19-Mar-2001 Keith Whitwell <keith@tungstengraphics.com> Split driver struct into swrast/tnl/core components.
/external/mesa3d/src/mesa/swrast/s_copypix.c
22144ab7552f0799bcfca506bf4ffa7f70a06649 12-Mar-2001 Gareth Hughes <gareth@valinux.com> Consistent copyright info (version number, date) across all files.
/external/mesa3d/src/mesa/swrast/s_copypix.c
b51b0a847d7e7daaea69f77ab569086ef81c24a2 07-Mar-2001 Brian Paul <brian.paul@tungstengraphics.com> fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots of potential problems
/external/mesa3d/src/mesa/swrast/s_copypix.c
08836341788a9f9d638d9dc8328510ccd18ddeb5 03-Mar-2001 Brian Paul <brian.paul@tungstengraphics.com> lots of gl_*() to _mesa_*() namespace clean-up
/external/mesa3d/src/mesa/swrast/s_copypix.c
dab76b4dc585f5833003ff3a0e53c256bf974d47 22-Feb-2001 Brian Paul <brian.paul@tungstengraphics.com> improvements to regions_overlap() function
/external/mesa3d/src/mesa/swrast/s_copypix.c
c499ce31baf820e84d133c2189f88e15a1a36672 20-Feb-2001 Brian Paul <brian.paul@tungstengraphics.com> Implemented GL_SGIX_shadow and GL_SGIX_shadow_texture.
Added some const keywords in the s/w texturing code.
/external/mesa3d/src/mesa/swrast/s_copypix.c
b6bcae5698df88f7730d40004ce7ce0462e97a20 24-Jan-2001 Brian Paul <brian.paul@tungstengraphics.com> Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h.
Replace "RGBAMode" with "rgbMode", etc.
Other minor clean-ups.
/external/mesa3d/src/mesa/swrast/s_copypix.c
8cbc573eae500aff6d121b2eef93fb00822622f1 05-Jan-2001 Brian Paul <brian.paul@tungstengraphics.com> Fixed bug in MinMagThresh computation.
Renamed gl_texture_pixels() to _swrast_texture_fragments()
/external/mesa3d/src/mesa/swrast/s_copypix.c
cab974cf6c2dbfbf5dd5d291e1aae0f8eeb34290 26-Dec-2000 Keith Whitwell <keith@tungstengraphics.com> Major rework of tnl module
New array_cache module
Support 8 texture units in core mesa (now support 8 everywhere)
Rework core mesa statechange operations to avoid flushing on many
noop statechanges.
/external/mesa3d/src/mesa/swrast/s_copypix.c
7f55eb2b149a0994a526307d01388cc123868eb9 28-Nov-2000 Brian Paul <brian.paul@tungstengraphics.com> changed error tests for depth and stencil buffers
/external/mesa3d/src/mesa/swrast/s_copypix.c
bfea97321ca4ae0ca65b560d7bd2bb30c7ca8a07 28-Nov-2000 Jouk Jansen <joukj@hrem.stm.tudelft.nl> Committing in .

Modified Files:
Mesa/src/swrast/s_copypix.c

changed one occurence of rgba to rgbaFloat
----------------------------------------------------------------------
/external/mesa3d/src/mesa/swrast/s_copypix.c
45015e4d79d63183f6d9c4e4fad655921e07b0ab 28-Nov-2000 Brian Paul <brian.paul@tungstengraphics.com> Pass scale and bias values to _mesa_scale_and_bias_rgba().
Implemented post-convolution scale and bias operation.
/external/mesa3d/src/mesa/swrast/s_copypix.c
df37d5f2dbf3821f6b3f24771b83ad34584ca383 10-Nov-2000 Brian Paul <brian.paul@tungstengraphics.com> replaced s_imaging.h with s_histogram.h
/external/mesa3d/src/mesa/swrast/s_copypix.c
cd03ed4f54444d96e4e47cdb118a3dfd94d92bb0 05-Nov-2000 Keith Whitwell <keith@tungstengraphics.com> Reorganized software rasterizer as a module which manages its own state,
with tighter interfaces with the rest of the world.

Proper documentation to come.
/external/mesa3d/src/mesa/swrast/s_copypix.c
acdb6db846de9f3dcf97ab918e2d89781f238592 01-Nov-2000 Brian Paul <brian.paul@tungstengraphics.com> Always call Driver.SetReadBuffer() in copy pixels functions, just to be safe
/external/mesa3d/src/mesa/swrast/s_copypix.c
e3a051e0538a605551f4d58294c94f5eb00ed07f 31-Oct-2000 Keith Whitwell <keith@tungstengraphics.com> Moved software rasterizer functionality to new directory.
/external/mesa3d/src/mesa/swrast/s_copypix.c