mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 05:46:48 +08:00
14 lines
354 B
C++
14 lines
354 B
C++
#pragma once
|
|
|
|
#include "OutputViewport.h"
|
|
|
|
namespace WallpaperEngine::Render::Drivers::Output {
|
|
class GLFWOutputViewport final : public OutputViewport {
|
|
public:
|
|
GLFWOutputViewport (glm::ivec4 viewport, std::string name);
|
|
|
|
void makeCurrent () override;
|
|
void swapOutput () override;
|
|
};
|
|
} // namespace WallpaperEngine::Render::Drivers::Output
|