summaryrefslogtreecommitdiff
path: root/src/mesa/swrast
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-19 16:27:59 -0600
committerBrian Paul <brianp@vmware.com>2009-09-19 16:43:17 -0600
commitdc3839ef3dc032627b7bb10b2c24786efc3ef5ec (patch)
tree96ec07a0e5135d5902b56a9ad4ca0b9c096caf23 /src/mesa/swrast
parent883dd9d770f0d25fb8474dc381faa99ee38de0e6 (diff)
mesa: move readbuffer tests
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r--src/mesa/swrast/s_imaging.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mesa/swrast/s_imaging.c b/src/mesa/swrast/s_imaging.c
index 3578b713f6..5a860a51ba 100644
--- a/src/mesa/swrast/s_imaging.c
+++ b/src/mesa/swrast/s_imaging.c
@@ -42,11 +42,6 @@ _swrast_CopyColorTable( GLcontext *ctx,
GLchan data[MAX_WIDTH][4];
struct gl_buffer_object *bufferSave;
- if (!ctx->ReadBuffer->_ColorReadBuffer) {
- /* no readbuffer - OK */
- return;
- }
-
if (width > MAX_WIDTH)
width = MAX_WIDTH;
@@ -76,11 +71,6 @@ _swrast_CopyColorSubTable( GLcontext *ctx,GLenum target, GLsizei start,
GLchan data[MAX_WIDTH][4];
struct gl_buffer_object *bufferSave;
- if (!ctx->ReadBuffer->_ColorReadBuffer) {
- /* no readbuffer - OK */
- return;
- }
-
if (width > MAX_WIDTH)
width = MAX_WIDTH;
@@ -111,11 +101,6 @@ _swrast_CopyConvolutionFilter1D(GLcontext *ctx, GLenum target,
GLchan rgba[MAX_CONVOLUTION_WIDTH][4];
struct gl_buffer_object *bufferSave;
- if (!ctx->ReadBuffer->_ColorReadBuffer) {
- /* no readbuffer - OK */
- return;
- }
-
swrast_render_start(ctx);
/* read the data from framebuffer */
@@ -147,11 +132,6 @@ _swrast_CopyConvolutionFilter2D(GLcontext *ctx, GLenum target,
GLint i;
struct gl_buffer_object *bufferSave;
- if (!ctx->ReadBuffer->_ColorReadBuffer) {
- /* no readbuffer - OK */
- return;
- }
-
swrast_render_start(ctx);
/* read pixels from framebuffer */