Update dependencies

This commit is contained in:
MrLetsplay 2024-01-30 21:33:25 +01:00
parent 39775453f2
commit 95777db289
Signed by: mr
SSH Key Fingerprint: SHA256:92jBH80vpXyaZHjaIl47pjRq+Yt7XGTArqQg1V7hSqg
7 changed files with 13 additions and 4 deletions

@ -1 +1 @@
Subproject commit ca76683b781db5d06ef1a0e2cb62a767e7dbe626 Subproject commit 47574f7ea445c8bb751da0fa716424c9c29a6807

2
dependencies/glm vendored

@ -1 +1 @@
Subproject commit 2993560ec9d0307da420e7bda0f23674102deb91 Subproject commit 33b0eb9fa336ffd8551024b1d2690e418014553b

2
dependencies/openvr vendored

@ -1 +1 @@
Subproject commit 15f0838a0487feb7da60acd39aab8099b994234c Subproject commit f51d87ecf8f7903e859b0aa4d617ff1e5f33db5a

View File

@ -5,7 +5,10 @@
#include "internal/physics.h" #include "internal/physics.h"
#include <BulletCollision/CollisionDispatch/btCollisionWorld.h> #include <BulletCollision/CollisionDispatch/btCollisionWorld.h>
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/vector_angle.hpp> #include <glm/gtx/vector_angle.hpp>
#undef GLM_ENABLE_EXPERIMENTAL
namespace kek { namespace kek {

View File

@ -4,8 +4,12 @@
#include <GLFW/glfw3.h> #include <GLFW/glfw3.h>
#include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp> #include <glm/gtc/type_ptr.hpp>
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/euler_angles.hpp> #include <glm/gtx/euler_angles.hpp>
#include <glm/gtx/matrix_decompose.hpp> #include <glm/gtx/matrix_decompose.hpp>
#undef GLM_ENABLE_EXPERIMENTAL
#include <math.h> #include <math.h>
#include "constants.h" #include "constants.h"

View File

@ -1,7 +1,10 @@
#pragma once #pragma once
#include <glm/glm.hpp> #include <glm/glm.hpp>
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/quaternion.hpp> #include <glm/gtx/quaternion.hpp>
#undef GLM_ENABLE_EXPERIMENTAL
namespace kek { namespace kek {

View File

@ -1,7 +1,6 @@
#pragma once #pragma once
#include <glm/glm.hpp> #include <glm/glm.hpp>
#include <glm/gtx/quaternion.hpp>
#include <iostream> #include <iostream>
#include "mesh.h" #include "mesh.h"