mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-16 18:00:36 +01:00
fix GetRow parameters (Nicolai Haehnle)
This commit is contained in:
parent
45472672a2
commit
efeea95dcc
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue