mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
a36a774897
-=-=-= -Added missing quaternion constructor -code completion fixes -winrt fixes
46 lines
675 B
C++
46 lines
675 B
C++
#ifndef CONTEXT_EGL_H
|
|
#define CONTEXT_EGL_H
|
|
|
|
#include <wrl.h>
|
|
|
|
#include "os/os.h"
|
|
#include "EGL/egl.h"
|
|
#include "error_list.h"
|
|
#include "drivers/gl_context/context_gl.h"
|
|
|
|
using namespace Windows::UI::Core;
|
|
|
|
class ContextEGL : public ContextGL {
|
|
|
|
CoreWindow^ window;
|
|
|
|
EGLDisplay mEglDisplay;
|
|
EGLContext mEglContext;
|
|
EGLSurface mEglSurface;
|
|
|
|
EGLint width;
|
|
EGLint height;
|
|
|
|
public:
|
|
|
|
virtual void release_current();
|
|
|
|
virtual void make_current();
|
|
|
|
virtual int get_window_width();
|
|
virtual int get_window_height();
|
|
virtual void swap_buffers();
|
|
|
|
virtual Error initialize();
|
|
void reset();
|
|
|
|
void cleanup();
|
|
|
|
ContextEGL(CoreWindow^ p_window);
|
|
~ContextEGL();
|
|
|
|
};
|
|
|
|
#endif
|
|
|