Initial OpenGL commit

This commit is contained in:
Corentin 2021-07-13 01:02:17 +09:00
commit 1ae16b306f
18 changed files with 25863 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#pragma once
// clang-format off
#include "glad/glad.h"
#define GLFW_INCLUDE_VULKAN
#include <GLFW/glfw3.h>
#define GLM_FORCE_RADIANS
#define GLM_FORCE_DEPTH_ZERO_TO_ONE
#include <glm/vec4.hpp>
#include <glm/mat4x4.hpp>
// clang-format off