[Bf-blender-cvs] [d751676cf3] blender2.8: Fix building full.

Bastien Montagne noreply at git.blender.org
Thu Feb 23 11:04:19 CET 2017


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);
 }




More information about the Bf-blender-cvs mailing list