12 lines
242 B
C++
12 lines
242 B
C++
#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
|