yuzu-android/src/citra/emu_window/emu_window_glfw.h

38 lines
886 B
C
Raw Normal View History

2014-04-09 00:25:53 +00:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2013-09-05 02:10:47 +00:00
#pragma once
2013-09-05 02:10:47 +00:00
#include <GLFW/glfw3.h>
#include "common/emu_window.h"
2013-09-05 02:10:47 +00:00
class EmuWindow_GLFW : public EmuWindow {
public:
EmuWindow_GLFW();
~EmuWindow_GLFW();
/// Swap buffers to display the next frame
void SwapBuffers();
/// Polls window events
void PollEvents();
/// Makes the graphics context current for the caller thread
void MakeCurrent();
/// Releases (dunno if this is the "right" word) the GLFW context from the caller thread
void DoneCurrent();
static void OnKeyEvent(GLFWwindow* win, int key, int scancode, int action, int mods);
2013-09-05 02:10:47 +00:00
void ReloadSetKeymaps() override;
2013-09-05 02:10:47 +00:00
private:
GLFWwindow* m_render_window; ///< Internal GLFW render window
/// Device id of keyboard for use with KeyMap
int keyboard_id;
2013-09-05 02:10:47 +00:00
};