24 lines
630 B
C++
24 lines
630 B
C++
/**
|
|
* Copyright (c) 2022 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "dawnsharedlibs.hpp"
|
|
|
|
#include <stb_truetype.h>
|
|
|
|
#include <glm/glm.hpp>
|
|
#include <glm/vec3.hpp>
|
|
#include <glm/vec4.hpp>
|
|
#include <glm/mat4x4.hpp>
|
|
#include <glm/gtx/component_wise.hpp>
|
|
#include <glm/gtc/quaternion.hpp>
|
|
#include <glm/ext/matrix_transform.hpp>
|
|
#include <glm/ext/matrix_clip_space.hpp>
|
|
#include <glm/ext/scalar_constants.hpp>
|
|
#include <glm/gtx/intersect.hpp>
|
|
#include <glm/gtc/type_ptr.hpp>
|
|
#include <glm/gtx/matrix_decompose.hpp> |