Skip to content

Commit

Permalink
Rename Metal log message
Browse files Browse the repository at this point in the history
  • Loading branch information
bejado committed May 10, 2024
1 parent 144d99d commit aeb0c14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions filament/backend/src/metal/MetalDriver.mm
Expand Up @@ -229,10 +229,10 @@
const uint64_t ring = MetalBufferTracking::getAliveBuffers(MetalBufferTracking::Type::RING);
const uint64_t staging = MetalBufferTracking::getAliveBuffers(MetalBufferTracking::Type::STAGING);
const uint64_t total = generic + ring + staging;
mPlatform.debugUpdateStat("filament.metal.alive_buffers2", total);
mPlatform.debugUpdateStat("filament.metal.alive_buffers2.generic", generic);
mPlatform.debugUpdateStat("filament.metal.alive_buffers2.ring", ring);
mPlatform.debugUpdateStat("filament.metal.alive_buffers2.staging", staging);
mPlatform.debugUpdateStat("filament.metal.alive_buffers", total);
mPlatform.debugUpdateStat("filament.metal.alive_buffers.generic", generic);
mPlatform.debugUpdateStat("filament.metal.alive_buffers.ring", ring);
mPlatform.debugUpdateStat("filament.metal.alive_buffers.staging", staging);
#endif
}
}
Expand Down

0 comments on commit aeb0c14

Please sign in to comment.