Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/pointcache.c
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| bytes += sizeof(PTCacheMem); | bytes += sizeof(PTCacheMem); | ||||
| totframes++; | totframes++; | ||||
| } | } | ||||
| BLI_str_format_int_grouped(formatted_tot, totframes); | BLI_str_format_int_grouped(formatted_tot, totframes); | ||||
| BLI_str_format_byte_unit(formatted_mem, bytes, true); | BLI_str_format_byte_unit(formatted_mem, bytes, false); | ||||
| BLI_snprintf(mem_info, | BLI_snprintf(mem_info, | ||||
| sizeof(mem_info), | sizeof(mem_info), | ||||
| TIP_("%s frames in memory (%s)"), | TIP_("%s frames in memory (%s)"), | ||||
| formatted_tot, | formatted_tot, | ||||
| formatted_mem); | formatted_mem); | ||||
| } | } | ||||
| Show All 30 Lines | |||||