summaryrefslogtreecommitdiff
path: root/platform/android/.old/context_gl_android.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/.old/context_gl_android.cpp')
-rw-r--r--platform/android/.old/context_gl_android.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/platform/android/.old/context_gl_android.cpp b/platform/android/.old/context_gl_android.cpp
deleted file mode 100644
index e48ed2e7f9..0000000000
--- a/platform/android/.old/context_gl_android.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-#include "context_gl_android.h"
-
-#include <GLES2/gl2.h>
-#include "os/os.h"
-void ContextGLAndroid::make_current() {
-
-};
-
-int ContextGLAndroid::get_window_width() {
-
- return OS::get_singleton()->get_default_video_mode().width;
-};
-
-int ContextGLAndroid::get_window_height() {
-
- return OS::get_singleton()->get_default_video_mode().height;
-
-};
-
-void ContextGLAndroid::swap_buffers() {
-
-};
-
-Error ContextGLAndroid::initialize() {
-
- return OK;
-};
-
-
-ContextGLAndroid::ContextGLAndroid() {
-
-
-};
-
-ContextGLAndroid::~ContextGLAndroid() {
-
-};
-