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:
authormano-wii <germano.costa@ig.com.br>2019-07-23 13:51:16 +0300
committermano-wii <germano.costa@ig.com.br>2019-07-23 13:51:16 +0300
commit19aa873f70026e4745584915466e9da6910457b8 (patch)
tree0ebec8f57bb7d8fb0b530e6924a7506b1d864735 /source/blender/draw/intern/draw_cache_impl_mesh.c
parent2d98ac33bef3b0dcba7bcffa3c37e35491a01d5c (diff)
Fix T67299: UV Stretching Overlay of type "Area" fail when any face is hidden
We want to include this for 2.80
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl_mesh.c')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_mesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_mesh.c b/source/blender/draw/intern/draw_cache_impl_mesh.c
index 306031809d1..2376787a273 100644
--- a/source/blender/draw/intern/draw_cache_impl_mesh.c
+++ b/source/blender/draw/intern/draw_cache_impl_mesh.c
@@ -4830,7 +4830,7 @@ static void uvedit_fill_buffer_data(MeshRenderData *rdata,
/* Tag hidden faces */
BM_elem_flag_set(efa, BM_ELEM_TAG, uvedit_face_visible_nolocal_ex(rdata->toolsettings, efa));
- if (vbo_area && BM_elem_flag_test(efa, BM_ELEM_TAG)) {
+ if (vbo_area) {
edit_uv_preprocess_stretch_area(
efa, cd_loop_uv_offset, fidx++, &totarea, &totuvarea, faces_areas);
}