diff options
author | Brian Paul <[email protected]> | 2013-11-07 15:23:34 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-11-07 15:23:36 -0700 |
commit | fe9284a7bfde59c450c49e6c8d58be82907e13a4 (patch) | |
tree | 6b0884f79bc5a355ff6a94bf429977541c43dab0 | |
parent | 6592a6d065845028034f2a032e7dce635f214ce7 (diff) |
mesa: fix return statements in varray.c
Return false, not GL_FALSE. Add missing return value.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71359
-rw-r--r-- | src/mesa/main/varray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index 1009bb89279..d17d698d3fb 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -315,13 +315,13 @@ update_array_format(struct gl_context *ctx, "%s(relativeOffset=%d > " "GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET)", func, relativeOffset); - return GL_FALSE; + return false; } if (ctx->Extensions.ARB_vertex_type_10f_11f_11f_rev && type == GL_UNSIGNED_INT_10F_11F_11F_REV && size != 3) { _mesa_error(ctx, GL_INVALID_OPERATION, "%s(size=%d)", func, size); - return; + return false; } ASSERT(size <= 4); |