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:
authorCampbell Barton <ideasman42@gmail.com>2012-12-19 13:13:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-19 13:13:06 +0400
commitfbf4f57cd6c20d72ca3d13ab021ff6b069d68240 (patch)
treef8ad3b026091844a984da939db991487a3a0cce5 /source/blender/editors/interface/interface_icons.c
parent62988549a1810814d590c7852741e4aa5b72eec9 (diff)
bmesh optimization: use BM_face_create() rather then BM_face_create_ngon() in BM_mesh_copy(), gives ~30% overall speedup in my tests.
Diffstat (limited to 'source/blender/editors/interface/interface_icons.c')
-rw-r--r--source/blender/editors/interface/interface_icons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_icons.c b/source/blender/editors/interface/interface_icons.c
index 2dc77e96678..d44e856231a 100644
--- a/source/blender/editors/interface/interface_icons.c
+++ b/source/blender/editors/interface/interface_icons.c
@@ -986,7 +986,7 @@ static void icon_draw_size(float x, float y, int icon_id, float aspect, float al
Icon *icon = NULL;
DrawInfo *di = NULL;
IconImage *iimg;
- float fdraw_size = draw_size;
+ const float fdraw_size = (float)draw_size;
int w, h;
icon = BKE_icon_get(icon_id);