Tramway SDK
config.h
Go to the documentation of this file.
1// TRAMWAY DRIFT AND DUNGEON EXPLORATION SIMULATOR 2022
2// All rights reserved.
3
4// This is the configuration file for the library portion of the framework.
5// If you change anything in here, you'll need to recompile everything.
6
7#ifndef TRAM_SDK_CONFIG_H
8#define TRAM_SDK_CONFIG_H
9
10#include <cstdint>
11
12const uint32_t MAX_MATERIAL_TYPES = 20;
13const uint32_t MAX_VERTEX_FORMATS = 20;
14
15const uint32_t MAX_VERTEX_SHADERS = 20;
16const uint32_t MAX_FRAGMENT_SHADERS = 20;
17const uint32_t MAX_LINKED_SHADERS = 40;
18
19#endif // TRAM_SDK_CONFIG_H
const uint32_t MAX_FRAGMENT_SHADERS
Definition: config.h:16
const uint32_t MAX_MATERIAL_TYPES
Definition: config.h:12
const uint32_t MAX_LINKED_SHADERS
Definition: config.h:17
const uint32_t MAX_VERTEX_FORMATS
Definition: config.h:13
const uint32_t MAX_VERTEX_SHADERS
Definition: config.h:15