Tramway SDK v0.1.1
material.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_RENDER_OPENGL_MATERIAL_H
4#define TRAM_SDK_RENDER_OPENGL_MATERIAL_H
5
6#include <render/render.h>
7#include <render/renderer.h>
8
9namespace tram::Render::API {
10
11struct GLMaterial {
12 uint32_t gl_texture = 0;
13 float specular_weight = 0.0f;
14 float specular_exponent = 1.0f;
16 float reflectivity = 0.0f;
17 vec4 color = {1.0f, 1.0f, 1.0f, 1.0f};
18};
19
20}
21
22#endif // TRAM_SDK_RENDER_OPENGL_MATERIAL_H
Rendering backend API.
glm::vec4 vec4
Definition: math.h:15
Definition: material.h:11
float specular_exponent
Definition: material.h:14
float specular_weight
Definition: material.h:13
float reflectivity
Definition: material.h:16
float specular_transparency
Definition: material.h:15
uint32_t gl_texture
Definition: material.h:12
vec4 color
Definition: material.h:17