add flag to toggle tracy (disabled for now)
This commit is contained in:
@ -1,11 +1,15 @@
|
||||
#include "octree.hpp"
|
||||
#include "config.hpp"
|
||||
#include "tracy.hpp"
|
||||
#include "util.hpp"
|
||||
|
||||
#include <iostream>
|
||||
#include <raymath.h>
|
||||
|
||||
#ifdef TRACY
|
||||
#include "tracy.hpp"
|
||||
#include <tracy/Tracy.hpp>
|
||||
#endif
|
||||
|
||||
auto OctreeNode::ChildCount() const -> int {
|
||||
int child_count = 0;
|
||||
for (int child : children) {
|
||||
|
||||
Reference in New Issue
Block a user