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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-04-28 22:23:52 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-04-28 22:23:52 +0300
commitd2ac3abbc2f9c66f5912b92768765ea326f800c5 (patch)
treed1160f460f887279be673484422484e9f625c770 /source/blender/editors/screen/glutil.c
parent859ac8fbc6eaaa303b04839538b590a5a240f857 (diff)
Compilation error fixes for strict compiler flags
Diffstat (limited to 'source/blender/editors/screen/glutil.c')
-rw-r--r--source/blender/editors/screen/glutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/glutil.c b/source/blender/editors/screen/glutil.c
index 1ab03bfb7ef..f29ba785180 100644
--- a/source/blender/editors/screen/glutil.c
+++ b/source/blender/editors/screen/glutil.c
@@ -991,7 +991,7 @@ void bgl_get_mats(bglMats *mats)
/**
* \note \a viewdist is only for ortho at the moment.
*/
-void bglPolygonOffset(float viewdist, float dist)
+void bglPolygonOffset(float UNUSED(viewdist), float dist)
{
static float winmat[16], offset = 0.0;