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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-12 16:23:25 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-04-12 16:23:25 +0400
commit02cf29d8b09a66376efa351344cfd5a7dc808323 (patch)
tree3a4d81d6c0adaf43389186c5d8f9ed6735ccd51a /source
parentb3bca9d252a0db7a157d4debf35dba4f8afe79af (diff)
Fix: subsurf UV was not working correct with n-gons, it still had hardcoded
4 vertices per face code in some places.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/subsurf_ccg.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/source/blender/blenkernel/intern/subsurf_ccg.c b/source/blender/blenkernel/intern/subsurf_ccg.c
index a3737b3f79e..fdbc45ebfb4 100644
--- a/source/blender/blenkernel/intern/subsurf_ccg.c
+++ b/source/blender/blenkernel/intern/subsurf_ccg.c
@@ -238,10 +238,10 @@ static int getFaceIndex(CCGSubSurf *ss, CCGFace *f, int S, int x, int y, int edg
}
}
-static void get_face_uv_map_vert(UvVertMap *vmap, struct MPoly *mp, struct MLoop *ml, int fi, CCGVertHDL *fverts)
+static void get_face_uv_map_vert(UvVertMap *vmap, struct MPoly *mpoly, struct MLoop *ml, int fi, CCGVertHDL *fverts)
{
UvMapVert *v, *nv;
- int j, nverts= mp->totloop;
+ int j, nverts= mpoly[fi].totloop;
for (j=0; j<nverts; j++) {
for (nv=v=get_uv_map_vert(vmap, ml[j].v); v; v=v->next) {
@@ -251,7 +251,7 @@ static void get_face_uv_map_vert(UvVertMap *vmap, struct MPoly *mp, struct MLoop
break;
}
- fverts[j]= SET_INT_IN_POINTER(nv->f*4 + nv->tfindex);
+ fverts[j]= SET_INT_IN_POINTER(mpoly[nv->f].loopstart + nv->tfindex);
}
}
@@ -293,9 +293,10 @@ static int ss_sync_from_uv(CCGSubSurf *ss, CCGSubSurf *origss, DerivedMesh *dm,
for (v=get_uv_map_vert(vmap, i); v; v=v->next) {
if (v->separate) {
CCGVert *ssv;
- CCGVertHDL vhdl = SET_INT_IN_POINTER(v->f*4 + v->tfindex);
+ int loopid = mpoly[v->f].loopstart + v->tfindex;
+ CCGVertHDL vhdl = SET_INT_IN_POINTER(loopid);
- copy_v2_v2(uv, mloopuv[mpoly[v->f].loopstart + v->tfindex].uv);
+ copy_v2_v2(uv, mloopuv[loopid].uv);
ccgSubSurf_syncVert(ss, vhdl, uv, seam, &ssv);
}
@@ -315,7 +316,7 @@ static int ss_sync_from_uv(CCGSubSurf *ss, CCGSubSurf *origss, DerivedMesh *dm,
BLI_array_empty(fverts);
BLI_array_growitems(fverts, nverts);
- get_face_uv_map_vert(vmap, mp, ml, i, fverts);
+ get_face_uv_map_vert(vmap, mpoly, ml, i, fverts);
for (j=0; j<nverts; j++) {
int v0 = GET_INT_FROM_POINTER(fverts[j]);
@@ -325,7 +326,7 @@ static int ss_sync_from_uv(CCGSubSurf *ss, CCGSubSurf *origss, DerivedMesh *dm,
if (!BLI_edgehash_haskey(ehash, v0, v1)) {
CCGEdge *e, *orige= ccgSubSurf_getFaceEdge(origf, j);
- CCGEdgeHDL ehdl= SET_INT_IN_POINTER(i*4 + j);
+ CCGEdgeHDL ehdl= SET_INT_IN_POINTER(mp->loopstart + j);
float crease;
if ((mv0->flag&mv1->flag) & ME_VERT_MERGED)
@@ -351,7 +352,7 @@ static int ss_sync_from_uv(CCGSubSurf *ss, CCGSubSurf *origss, DerivedMesh *dm,
BLI_array_empty(fverts);
BLI_array_growitems(fverts, nverts);
- get_face_uv_map_vert(vmap, mp, ml, i, fverts);
+ get_face_uv_map_vert(vmap, mpoly, ml, i, fverts);
ccgSubSurf_syncFace(ss, SET_INT_IN_POINTER(i), nverts, fverts, &f);
}