Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/mesh_extractors/extract_mesh.hh
| Show First 20 Lines • Show All 73 Lines • ▼ Show 20 Lines | struct MeshRenderData { | ||||
| const MVert *mvert; | const MVert *mvert; | ||||
| const MEdge *medge; | const MEdge *medge; | ||||
| const MLoop *mloop; | const MLoop *mloop; | ||||
| 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; | ||||
| /* Data created on-demand (usually not for #BMesh based data). */ | /* The triangulation of #Mesh polygons, owned by the mesh. */ | ||||
| MLoopTri *mlooptri; | const MLoopTri *mlooptri; | ||||
| const float (*vert_normals)[3]; | const float (*vert_normals)[3]; | ||||
| const float (*poly_normals)[3]; | const float (*poly_normals)[3]; | ||||
| float (*loop_normals)[3]; | float (*loop_normals)[3]; | ||||
| int *lverts, *ledges; | int *lverts, *ledges; | ||||
| const char *active_color_name; | const char *active_color_name; | ||||
| const char *default_color_name; | const char *default_color_name; | ||||
| ▲ Show 20 Lines • Show All 345 Lines • Show Last 20 Lines | |||||