summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/swrast/swrast_spantemp.h
diff options
context:
space:
mode:
authorGeorge Sapountzis <gsap7@yahoo.gr>2008-05-23 22:55:36 +0300
committerGeorge Sapountzis <gsap7@yahoo.gr>2008-05-23 22:55:36 +0300
commit95eb6422c718d3d4ef34ec35bffa83307025793d (patch)
treeeec73d268731977097d0cc18acab9cb779bfb02a /src/mesa/drivers/dri/swrast/swrast_spantemp.h
parent73d66a3c63f380a27e16f5287fb37ed1d98bf818 (diff)
dri/swrast: cosmetic, mainly generic vs. xorg terminology
Diffstat (limited to 'src/mesa/drivers/dri/swrast/swrast_spantemp.h')
-rw-r--r--src/mesa/drivers/dri/swrast/swrast_spantemp.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/swrast/swrast_spantemp.h b/src/mesa/drivers/dri/swrast/swrast_spantemp.h
index 7c60c15974..e7a9c86d7d 100644
--- a/src/mesa/drivers/dri/swrast/swrast_spantemp.h
+++ b/src/mesa/drivers/dri/swrast/swrast_spantemp.h
@@ -24,12 +24,12 @@
/*
- * This is a modified version of swrast/s_spantemp.h for rendering to X11
- * drawables. The no-mask paths use a scratch row to avoid repeated calls
- * to xserver.
+ * Modified version of swrast/s_spantemp.h for front-buffer rendering. The
+ * no-mask paths use a scratch row to avoid repeated calls to the loader.
*
- * For the mask paths we always use an array of 4 elements of RB_TYPE because
- * we should pad "image" pitch to 32 bits.
+ * For the mask paths we always use an array of 4 elements of RB_TYPE. This is
+ * to satisfy the xorg loader requirement of an image pitch of 32 bits and
+ * should be ok for other loaders also.
*/
@@ -54,12 +54,12 @@ static inline void
GET_PIXEL( GLcontext *glCtx, GLint x, GLint y, GLubyte *p )
{
__DRIcontext *ctx = swrast_context(glCtx);
- __DRIdrawable *draw = swrast_drawable(glCtx->ReadBuffer);
+ __DRIdrawable *read = swrast_drawable(glCtx->ReadBuffer);
__DRIscreen *screen = ctx->driScreenPriv;
- screen->swrast_loader->getImage(draw, x, y, 1, 1, (char *)p,
- draw->loaderPrivate);
+ screen->swrast_loader->getImage(read, x, y, 1, 1, (char *)p,
+ read->loaderPrivate);
}
static inline void
@@ -79,12 +79,12 @@ static inline void
GET_ROW( GLcontext *glCtx, GLint x, GLint y, GLuint n, char *row )
{
__DRIcontext *ctx = swrast_context(glCtx);
- __DRIdrawable *draw = swrast_drawable(glCtx->ReadBuffer);
+ __DRIdrawable *read = swrast_drawable(glCtx->ReadBuffer);
__DRIscreen *screen = ctx->driScreenPriv;
- screen->swrast_loader->getImage(draw, x, y, n, 1, row,
- draw->loaderPrivate);
+ screen->swrast_loader->getImage(read, x, y, n, 1, row,
+ read->loaderPrivate);
}
#endif /* _SWRAST_SPANTEMP_ONCE */
@@ -133,7 +133,7 @@ NAME(get_row)( GLcontext *ctx, struct gl_renderbuffer *rb,
RB_TYPE (*dest)[RB_COMPONENTS] = (RB_TYPE (*)[RB_COMPONENTS]) values;
#endif
GLuint i;
- char *row = swrast_drawable(ctx->DrawBuffer)->row;
+ char *row = swrast_drawable(ctx->ReadBuffer)->row;
INIT_PIXEL_PTR(pixel, x, y);
GET_ROW( ctx, x, YFLIP(xrb, y), count, row );
for (i = 0; i < count; i++) {