blob: 7ba1686ce5d0c937480c8aedc666304f4fd04c89 (
plain) (
tree)
|
|
#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;
};
|