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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-02-23 13:03:56 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-02-23 13:03:56 +0300
commitd751676cf319beb372ea12178729e0e3d00801c7 (patch)
tree2fedac74245a7b60d35f4faaaf83143d6564788b /source/blender/gpu
parentb46b2834b9596b9a7c026dd2e041a329cda9bb59 (diff)
Fix building full.
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c
index fa8e05b6bfb..1fb1e239310 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);
}