| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // graphics_fwd.h
- // graphics
- //
- // Created by Sam Jaffe on 5/25/19.
- // Copyright © 2019 Sam Jaffe. All rights reserved.
- //
- #pragma once
- #include "game/util/identity.hpp"
- namespace graphics {
- // API classes
- class manager;
- struct object;
- class renderer;
- struct vertex;
- // Implementation classes
- struct material;
- struct shader;
- struct shader_program;
- class texture;
- namespace materials {
- enum class uniform : unsigned int;
- }
- namespace shaders {
- enum class type : unsigned int;
- }
- namespace textures {
- enum class format : unsigned int;
- }
- }
|