mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 18:23:03 +02:00
13 lines
400 B
C++
13 lines
400 B
C++
#ifndef BEFORE_RENDER_HPP
|
|
#define BEFORE_RENDER_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 |