Tramway SDK v0.1.1
light.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_RENDER_OPENGL_LIGHT_H
4#define TRAM_SDK_RENDER_OPENGL_LIGHT_H
5
6#include <render/render.h>
7#include <render/renderer.h>
8
9namespace tram::Render::API {
10
11struct GLLight {
12 vec3 location = {0.0f, 0.0f, 0.0f};
13 float padding;
14 vec3 color = {0.0f, 0.0f, 0.0f};
15 float distance = 0.0f;
16 vec3 direction = {0.0f, 0.0f, -1.0f};
17 float exponent = 0.0f;
18 float padding2[4];
19};
20
21}
22
23#endif // TRAM_SDK_RENDER_OPENGL_LIGHT_H
Rendering backend API.
glm::vec3 vec3
Definition: math.h:11
Definition: light.h:11
float exponent
Definition: light.h:17
vec3 direction
Definition: light.h:16
float padding
Definition: light.h:13
vec3 color
Definition: light.h:14
float distance
Definition: light.h:15
vec3 location
Definition: light.h:12
float padding2[4]
Definition: light.h:18