Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/data_transfer.cc
| Show First 20 Lines • Show All 231 Lines • ▼ Show 20 Lines | switch (dtdata_type) { | ||||
| case DT_TYPE_MDEFORMVERT: | case DT_TYPE_MDEFORMVERT: | ||||
| return DT_MULTILAYER_INDEX_MDEFORMVERT; | return DT_MULTILAYER_INDEX_MDEFORMVERT; | ||||
| case DT_TYPE_SHAPEKEY: | case DT_TYPE_SHAPEKEY: | ||||
| return DT_MULTILAYER_INDEX_SHAPEKEY; | return DT_MULTILAYER_INDEX_SHAPEKEY; | ||||
| case DT_TYPE_UV: | case DT_TYPE_UV: | ||||
| return DT_MULTILAYER_INDEX_UV; | return DT_MULTILAYER_INDEX_UV; | ||||
| case DT_TYPE_MPROPCOL_VERT: | case DT_TYPE_MPROPCOL_VERT: | ||||
| case DT_TYPE_MLOOPCOL_VERT: | case DT_TYPE_MLOOPCOL_VERT: | ||||
| case DT_TYPE_MPROPCOL_VERT | DT_TYPE_MLOOPCOL_VERT: | |||||
| return DT_MULTILAYER_INDEX_VCOL_VERT; | return DT_MULTILAYER_INDEX_VCOL_VERT; | ||||
| case DT_TYPE_MPROPCOL_LOOP: | case DT_TYPE_MPROPCOL_LOOP: | ||||
| case DT_TYPE_MLOOPCOL_LOOP: | case DT_TYPE_MLOOPCOL_LOOP: | ||||
| case DT_TYPE_MPROPCOL_LOOP | DT_TYPE_MLOOPCOL_LOOP: | |||||
| return DT_MULTILAYER_INDEX_VCOL_LOOP; | return DT_MULTILAYER_INDEX_VCOL_LOOP; | ||||
| default: | default: | ||||
| return DT_MULTILAYER_INDEX_INVALID; | return DT_MULTILAYER_INDEX_INVALID; | ||||
| } | } | ||||
| } | } | ||||
| /* ********** */ | /* ********** */ | ||||
| ▲ Show 20 Lines • Show All 1,478 Lines • Show Last 20 Lines | |||||