2014-08-09 14:31:27 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-08-09 14:31:27 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "Core/Host.h"
|
2014-11-01 14:33:02 +00:00
|
|
|
#include "VideoBackends/OGL/GLInterface/EGLAndroid.h"
|
2014-08-09 14:31:27 +00:00
|
|
|
|
|
|
|
EGLDisplay cInterfaceEGLAndroid::OpenDisplay()
|
|
|
|
{
|
|
|
|
return eglGetDisplay(EGL_DEFAULT_DISPLAY);
|
|
|
|
}
|
|
|
|
|
|
|
|
EGLNativeWindowType cInterfaceEGLAndroid::InitializePlatform(EGLNativeWindowType host_window, EGLConfig config)
|
|
|
|
{
|
|
|
|
EGLint format;
|
|
|
|
eglGetConfigAttrib(egl_dpy, config, EGL_NATIVE_VISUAL_ID, &format);
|
|
|
|
ANativeWindow_setBuffersGeometry(host_window, 0, 0, format);
|
|
|
|
|
2014-11-15 05:11:09 +00:00
|
|
|
const int width = ANativeWindow_getWidth(host_window);
|
|
|
|
const int height = ANativeWindow_getHeight(host_window);
|
2014-08-09 14:31:27 +00:00
|
|
|
GLInterface->SetBackBufferDimensions(width, height);
|
|
|
|
|
|
|
|
return host_window;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cInterfaceEGLAndroid::ShutdownPlatform()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|