compile metal in cmake

This commit is contained in:
2024-08-05 00:08:16 -07:00
parent 1fe9578b3a
commit bc9289474b
6 changed files with 62 additions and 15 deletions

View File

@ -8,7 +8,7 @@ public struct FPSCalculator {
_framesCount += 1
_accumulator += deltaTime
if (_accumulator >= 1.0) {
if _accumulator >= 1.0 {
result(_framesCount)
_framesCount = 0