mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 16:23:14 +02:00
16 lines
539 B
C++
16 lines
539 B
C++
// "Copyright [2023] <Krzysztof Rudnicki>"
|
|
#ifndef ENGINE_ENGINE_BEFORERENDER_HPP_
|
|
#define ENGINE_ENGINE_BEFORERENDER_HPP_
|
|
#include <GLFW/glfw3.h>
|
|
|
|
void configureGLFW(const int GLFWMajorVersion, const int GLFWMinorVersion);
|
|
void instantiateGLFWwindow();
|
|
GLFWwindow *createWindowObject();
|
|
int initializeGLAD();
|
|
void framebuffer_size_callback(GLFWwindow *window, const int width,
|
|
const int height);
|
|
void viewPort(GLFWwindow *window);
|
|
GLFWwindow *prepareForRender();
|
|
|
|
#endif // ENGINE_ENGINE_BEFORERENDER_HPP_
|