This commit is contained in:
IlyaShurupov 2024-03-19 11:52:22 +03:00 committed by Ilya Shurupov
parent 84046e89be
commit 25fd52294f
4 changed files with 26 additions and 38 deletions

View file

@ -1,13 +1,10 @@
#include "Window.hpp"
#include "WindowContext.hpp"
#include "Allocators.hpp"
// -------- OpenGL -------- //
#include <GL/glew.h>
// -------- Window Context -------- //
#include <GLFW/glfw3.h>
#ifdef ENV_OS_WINDOWS
#define GLFW_EXPOSE_NATIVE_WIN32
#endif
@ -16,9 +13,7 @@
#define GLFW_EXPOSE_NATIVE_WAYLAND
#endif
#include <GLFW/glfw3native.h>
#include <array>
#include <GLFW/glfw3.h>
#include <cstdio>
namespace tp {

View file

@ -1,12 +1,13 @@
#pragma once
#include "Window.hpp"
#include "Color.hpp"
#include "Rect.hpp"
#include "Buffer.hpp"
namespace tp {
class Window;
class DebugGUI {
class Context;