Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_info/info_stats.c
| Show First 20 Lines • Show All 58 Lines • ▼ Show 20 Lines | |||||
| #include "DEG_depsgraph_query.h" | #include "DEG_depsgraph_query.h" | ||||
| #include "ED_armature.h" | #include "ED_armature.h" | ||||
| #include "ED_info.h" | #include "ED_info.h" | ||||
| #include "UI_resources.h" | #include "UI_resources.h" | ||||
| #include "GPU_extensions.h" | #include "GPU_capabilities.h" | ||||
| #define MAX_INFO_NUM_LEN 16 | #define MAX_INFO_NUM_LEN 16 | ||||
| typedef struct SceneStats { | typedef struct SceneStats { | ||||
| uint64_t totvert, totvertsel; | uint64_t totvert, totvertsel; | ||||
| uint64_t totedge, totedgesel; | uint64_t totedge, totedgesel; | ||||
| uint64_t totface, totfacesel; | uint64_t totface, totfacesel; | ||||
| uint64_t totbone, totbonesel; | uint64_t totbone, totbonesel; | ||||
| ▲ Show 20 Lines • Show All 665 Lines • Show Last 20 Lines | |||||