initial commit

This commit is contained in:
ZY4N
2024-12-10 13:50:21 +01:00
parent 20bbd06a89
commit 275d47b7c6
33 changed files with 1066 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include "glm/glm.hpp"
namespace zgl
{
struct surface_properties_handle
{
glm::mat3 filters{
0.1986f, 0.0000f, 0.0000f,
0.5922f, 0.0166f, 0.0000f,
0.5974f, 0.2084f, 0.2084f
};
float shininess{ 100.2237f };
};
}