2014-04-09 02:25:53 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 04:10:47 +02:00
|
|
|
|
2014-04-06 22:55:05 +02:00
|
|
|
#pragma once
|
2013-09-05 04:10:47 +02:00
|
|
|
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
2014-04-09 02:15:08 +02:00
|
|
|
#include "common/emu_window.h"
|
2013-09-05 04:10:47 +02: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();
|
|
|
|
|
2014-04-09 05:18:23 +02:00
|
|
|
GLFWwindow* m_render_window; ///< Internal GLFW render window
|
2013-09-05 04:10:47 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
};
|