mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
swrast: s/GLfloat/GLuint/ in bzero()
This commit is contained in:
parent
14f21c7850
commit
edbaa717b4
1 changed files with 1 additions and 1 deletions
|
|
@ -1274,7 +1274,7 @@ _swrast_read_depth_span_uint( GLcontext *ctx, struct gl_renderbuffer *rb,
|
|||
{
|
||||
if (!rb) {
|
||||
/* really only doing this to prevent FP exceptions later */
|
||||
_mesa_bzero(depth, n * sizeof(GLfloat));
|
||||
_mesa_bzero(depth, n * sizeof(GLuint));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue