blob: 86fbad7dfc5f689017dcc5f73ffad33a655956bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "Entrypoint/Common.hpp"
#include <glad/glad.h>
#include <GLFW/glfw3.h>
class OpenGL2Backend : public RenderingBackend {
public:
OpenGL2Backend();
virtual ~OpenGL2Backend();
virtual void BeginFrame() override;
virtual void EndFrame() override;
};
|