blob: 7ba1686ce5d0c937480c8aedc666304f4fd04c89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <atomic>
struct DebugInfo {
static std::atomic_int totalSections;
static std::atomic_int renderSections;
static std::atomic_int culledSections;
static std::atomic_int readyRenderer;
static std::atomic_int gameThreadTime;
static std::atomic_int renderFaces;
};
|