Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/subsurf_ccg.c
| Show First 20 Lines • Show All 2,513 Lines • ▼ Show 20 Lines | static void ccgDM_drawMappedEdges(DerivedMesh *dm, | ||||
| } | } | ||||
| ccgEdgeIterator_free(ei); | ccgEdgeIterator_free(ei); | ||||
| } | } | ||||
| static void ccgDM_drawMappedEdgesInterp(DerivedMesh *dm, | static void ccgDM_drawMappedEdgesInterp(DerivedMesh *dm, | ||||
| DMSetDrawOptions setDrawOptions, | DMSetDrawOptions setDrawOptions, | ||||
| DMSetDrawInterpOptions setDrawInterpOptions, | DMSetDrawInterpOptions setDrawInterpOptions, | ||||
| void *userData) | void *userData, | ||||
| const bool UNUSED(draw_weights)) | |||||
| { | { | ||||
| CCGDerivedMesh *ccgdm = (CCGDerivedMesh *) dm; | CCGDerivedMesh *ccgdm = (CCGDerivedMesh *) dm; | ||||
| CCGSubSurf *ss = ccgdm->ss; | CCGSubSurf *ss = ccgdm->ss; | ||||
| CCGKey key; | CCGKey key; | ||||
| CCGEdgeIterator *ei; | CCGEdgeIterator *ei; | ||||
| int i, useAging, edgeSize = ccgSubSurf_getEdgeSize(ss); | int i, useAging, edgeSize = ccgSubSurf_getEdgeSize(ss); | ||||
| CCG_key_top_level(&key, ss); | CCG_key_top_level(&key, ss); | ||||
| ▲ Show 20 Lines • Show All 1,204 Lines • Show Last 20 Lines | |||||