aboutsummaryrefslogtreecommitdiff
path: root/core/src/Entrypoint/OpenGL3.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-03-28 13:24:52 -0700
committerrtk0c <[email protected]>2021-03-28 13:24:52 -0700
commitbdcc81822adddf2c6ad7f10d9e090d913475c1e0 (patch)
tree91997b21958992f4e9e48839166ea4feaa0712b1 /core/src/Entrypoint/OpenGL3.hpp
parent442d2d75d71bbc057e667edc301a79fa1cc813be (diff)
Initial code structure
Diffstat (limited to 'core/src/Entrypoint/OpenGL3.hpp')
-rw-r--r--core/src/Entrypoint/OpenGL3.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/src/Entrypoint/OpenGL3.hpp b/core/src/Entrypoint/OpenGL3.hpp
new file mode 100644
index 0000000..29086a2
--- /dev/null
+++ b/core/src/Entrypoint/OpenGL3.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "Entrypoint/Common.hpp"
+
+#include <glad/glad.h>
+
+#include <GLFW/glfw3.h>
+
+class OpenGL3Backend : public RenderingBackend {
+public:
+ OpenGL3Backend();
+ virtual ~OpenGL3Backend() ;
+ virtual void BeginFrame() override;
+ virtual void EndFrame() override;
+};