Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
pch.h
Go to the documentation of this file.
1#ifndef INCLUDE_PCH_PCH_H_
2#define INCLUDE_PCH_PCH_H_
3
4// #if defined(USE_IMGUI) || defined(USE_IMGUI_BACKENDS)
5// #include <imgui.h>
6// #ifdef USE_IMGUI_BACKENDS
7// #include <backends/imgui_impl_sdl3.h>
8// #include <backends/imgui_impl_sdlgpu3.h>
9// #endif // USE_IMGUI_BACKENDS
10// #endif // USE_IMGUI
11
12#include <imgui.h>
13#include <backends/imgui_impl_sdl3.h>
14#include <backends/imgui_impl_sdlgpu3.h>
15
16#include <SDL3/SDL.h>
17#include <SDL3/SDL_gpu.h>
18#include <SDL3/SDL_scancode.h>
19
20#include <glm/glm.hpp>
21#include <glm/exponential.hpp>
22#include <glm/trigonometric.hpp>
23#include <glm/ext/matrix_float4x4.hpp>
24#include <glm/gtc/matrix_transform.hpp>
25#include <glm/gtc/quaternion.hpp>
26
27#include <iostream>
28#include <memory>
29#include <random>
30#include <thread>
31#include <atomic>
32#include <vector>
33#include <array>
34#include <string>
35#include <cassert>
36#include <chrono>
37#include <filesystem>
38#include <fstream>
39#include <exception>
40#include <cmath>
41
42#endif // INCLUDE_PCH_PCH_H_