virtualx-engine/platform/android/.old/context_gl_android.cpp

39 lines
533 B
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
#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() {
};