Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2015-05-01 20:17:14 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2015-05-01 20:18:26 +0300
commitd3c45535529603a90e47343d088df1dec750c81d (patch)
tree5cc2e2d0e7cfd6b56b9ee1b568133e3beaad1afb /source/blender/gpu/intern/gpu_debug.c
parent74d31279cd90df312de2078d3323ddcb857e2bbf (diff)
Fix a couple of harmless compiler warnings.
Diffstat (limited to 'source/blender/gpu/intern/gpu_debug.c')
-rw-r--r--source/blender/gpu/intern/gpu_debug.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/gpu/intern/gpu_debug.c b/source/blender/gpu/intern/gpu_debug.c
index a0dde9c8f3b..7bcc51aef31 100644
--- a/source/blender/gpu/intern/gpu_debug.c
+++ b/source/blender/gpu/intern/gpu_debug.c
@@ -356,6 +356,7 @@ void gpu_assert_no_gl_errors(const char* file, int line, const char* str)
GLboolean gl_ok = gpu_report_gl_errors(file, line, str);
BLI_assert(gl_ok);
+ (void) gl_ok;
}
}