swrast: add missing returns
This commit is contained in:
@@ -1211,6 +1211,7 @@ _swrast_read_depth_span_float( GLcontext *ctx, struct gl_renderbuffer *rb,
|
||||
if (!rb) {
|
||||
/* really only doing this to prevent FP exceptions later */
|
||||
_mesa_bzero(depth, n * sizeof(GLfloat));
|
||||
return;
|
||||
}
|
||||
|
||||
ASSERT(rb->_BaseFormat == GL_DEPTH_COMPONENT);
|
||||
@@ -1274,6 +1275,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));
|
||||
return;
|
||||
}
|
||||
|
||||
ASSERT(rb->_BaseFormat == GL_DEPTH_COMPONENT);
|
||||
|
Reference in New Issue
Block a user