diff options
author | Brian Paul <[email protected]> | 1999-11-24 18:48:30 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-11-24 18:48:30 +0000 |
commit | 3f02f90f943a996d88abc20f74503afbb56a4c98 (patch) | |
tree | f12094c909404fe909730a0e4951236c91e741c7 /src/mesa/main/blend.c | |
parent | 5bf7f47083f29f4e5f44107f2f398b8b37dd423b (diff) |
added support for separate read/draw buffers per context
Diffstat (limited to 'src/mesa/main/blend.c')
-rw-r--r-- | src/mesa/main/blend.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index 0790d65256c..e042945d2c9 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -1,8 +1,8 @@ -/* $Id: blend.c,v 1.9 1999/11/12 04:56:55 kendallb Exp $ */ +/* $Id: blend.c,v 1.10 1999/11/24 18:48:31 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.1 + * Version: 3.3 * * Copyright (C) 1999 Brian Paul All Rights Reserved. * @@ -782,7 +782,7 @@ void gl_blend_span( GLcontext *ctx, GLuint n, GLint x, GLint y, } /* Read span of current frame buffer pixels */ - gl_read_rgba_span( ctx, n, x, y, dest ); + gl_read_rgba_span( ctx, ctx->DrawBuffer, n, x, y, dest ); if (!ctx->Color.BlendFunc) set_blend_function(ctx); |