TDME2 1.9.121
LightingShaderConstants.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6/**
7 * Lighting shader constants
8 * @author Andreas Drewke
9 * @version $Id$
10 */
12{
13 static constexpr int32_t SPECULAR_TEXTUREUNIT_DIFFUSE { 0 };
14 static constexpr int32_t SPECULAR_TEXTUREUNIT_SPECULAR { 1 };
15 static constexpr int32_t SPECULAR_TEXTUREUNIT_NORMAL { 2 };
16 static constexpr int32_t SPECULAR_TEXTUREUNIT_ENVIRONMENT { 3 };
17 static constexpr int32_t SPECULAR_TEXTUREUNIT_TERRAIN_GRAS { 4 };
18 static constexpr int32_t SPECULAR_TEXTUREUNIT_TERRAIN_DIRT { 5 };
19 static constexpr int32_t SPECULAR_TEXTUREUNIT_TERRAIN_STONE { 6 };
20 static constexpr int32_t SPECULAR_TEXTUREUNIT_TERRAIN_SNOW { 7 };
21 static constexpr int32_t SPECULAR_TEXTUREUNIT_TERRAIN_BRUSH { 8 };
22
23 static constexpr int32_t PBR_TEXTUREUNIT_BASECOLOR { 0 };
24 static constexpr int32_t PBR_TEXTUREUNIT_METALLICROUGHNESS { 1 };
25 static constexpr int32_t PBR_TEXTUREUNIT_NORMAL { 2 };
26 static constexpr int32_t PBR_TEXTUREUNIT_ENVIRONMENT_DIFFUSE { 3 };
27 static constexpr int32_t PBR_TEXTUREUNIT_ENVIRONMENT_SPECULAR { 4 };
28 static constexpr int32_t PBR_TEXTUREUNIT_ENVIRONMENT_BRDF { 5 };
29
30};