light/Engine/src/Platform/GraphicsAPI/OpenGL/glGraphicsContext.h

22 lines
311 B
C
Raw Normal View History

2021-05-26 18:39:40 +04:30
#pragma once
#include "Base.h"
#include "Graphics/GraphicsContext.h"
struct GLFWwindow;
namespace Light {
class glGraphicsContext : public GraphicsContext
{
private:
GLFWwindow* m_WindowHandle;
public:
glGraphicsContext(GLFWwindow* windowHandle);
2021-05-31 23:28:29 +04:30
private:
void SetDebugMessageCallback();
2021-05-26 18:39:40 +04:30
};
}