diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-05-15 21:26:11 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-05-15 21:26:11 +0000 |
commit | efeea95dcc9094528dcce59abc475046835ecd6a (patch) | |
tree | 4fb3fdfa7083452c0024620ed52ee1ac007868fe | |
parent | 45472672a2764e2ceaf499f586d7c337ddba731c (diff) |
fix GetRow parameters (Nicolai Haehnle)
-rw-r--r-- | src/mesa/swrast/s_depth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_depth.c b/src/mesa/swrast/s_depth.c index e36878e6fc..9f17bb17aa 100644 --- a/src/mesa/swrast/s_depth.c +++ b/src/mesa/swrast/s_depth.c @@ -1234,7 +1234,7 @@ _swrast_read_depth_span( GLcontext *ctx, struct gl_renderbuffer *rb, _mesa_bzero(depth, n * sizeof(GLuint)); } else if (rb->DataType == GL_UNSIGNED_INT) { - rb->GetRow(ctx, rb, x, y, n, depth); + rb->GetRow(ctx, rb, n, x, y, depth); } else { GLushort temp[MAX_WIDTH]; |