Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/mesh_extractors/extract_mesh.hh
| Show First 20 Lines • Show All 70 Lines • ▼ Show 20 Lines | struct MeshRenderData { | ||||
| int vert_crease_ofs; | int vert_crease_ofs; | ||||
| int bweight_ofs; | int bweight_ofs; | ||||
| int freestyle_edge_ofs; | int freestyle_edge_ofs; | ||||
| int freestyle_face_ofs; | int freestyle_face_ofs; | ||||
| /** Mesh */ | /** Mesh */ | ||||
| Mesh *me; | Mesh *me; | ||||
| const blender::float3 *vert_positions; | const blender::float3 *vert_positions; | ||||
| const MEdge *medge; | const MEdge *medge; | ||||
| const MLoop *mloop; | const int *corner_verts; | ||||
| const int *corner_edges; | |||||
| const MPoly *mpoly; | const MPoly *mpoly; | ||||
| BMVert *eve_act; | BMVert *eve_act; | ||||
| BMEdge *eed_act; | BMEdge *eed_act; | ||||
| BMFace *efa_act; | BMFace *efa_act; | ||||
| BMFace *efa_act_uv; | BMFace *efa_act_uv; | ||||
| /* The triangulation of #Mesh polygons, owned by the mesh. */ | /* The triangulation of #Mesh polygons, owned by the mesh. */ | ||||
| const MLoopTri *mlooptri; | const MLoopTri *mlooptri; | ||||
| const int *material_indices; | const int *material_indices; | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||