Commit: d751676cf319beb372ea12178729e0e3d00801c7
Author: Bastien Montagne
Date:   Thu Feb 23 11:03:56 2017 +0100
Branches: blender2.8
https://developer.blender.org/rBd751676cf319beb372ea12178729e0e3d00801c7

Fix building full.

===================================================================

M       source/blender/gpu/intern/gpu_draw.c

===================================================================

diff --git a/source/blender/gpu/intern/gpu_draw.c 
b/source/blender/gpu/intern/gpu_draw.c
index fa8e05b6bf..1fb1e23931 100644
--- a/source/blender/gpu/intern/gpu_draw.c
+++ b/source/blender/gpu/intern/gpu_draw.c
@@ -220,7 +220,7 @@ void GPU_render_text(
 
 /* Checking powers of two for images since OpenGL ES requires it */
 
-static bool UNUSED_FUNCTION(is_power_of_2_resolution)(int w, int h)
+static bool is_power_of_2_resolution(int w, int h)
 {
        return is_power_of_2_i(w) && is_power_of_2_i(h);
 }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to