candlewick 0.1.0
A renderer
Loading...
Searching...
No Matches
Core.h
Go to the documentation of this file.
1#pragma once
2
3#include <coal/fwd.hh>
4#include <cassert>
5
6#define CDW_ASSERT(condition, msg) assert(((condition) && (msg)))
7
8namespace candlewick {
9struct Camera;
10class CommandBuffer;
11struct Device;
12class Texture;
13class Mesh;
14class MeshView;
15class MeshLayout;
16struct Shader;
17struct Renderer;
18struct Window;
19
20using coal::AABB;
21
22} // namespace candlewick
Definition Camera.h:8