28 lines
279 B
C++
28 lines
279 B
C++
#pragma once
|
|
|
|
#include "../monitor.hpp"
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
|
|
namespace hpr::gpu::glfw
|
|
{
|
|
|
|
class Monitor : public gpu::Monitor
|
|
{
|
|
friend class WindowSystem;
|
|
friend class Window;
|
|
|
|
protected:
|
|
|
|
GLFWmonitor* p_instance;
|
|
|
|
public:
|
|
|
|
Monitor();
|
|
|
|
~Monitor();
|
|
|
|
};
|
|
|
|
} |