hyprpicker/src/helpers/Monitor.hpp

16 lines
452 B
C++
Raw Normal View History

2022-09-02 18:06:00 +02:00
#pragma once
#include "../defines.hpp"
struct SMonitor {
std::string name = "";
wl_output* output = nullptr;
uint32_t wayland_name = 0;
Vector2D size;
int scale;
wl_output_transform transform = WL_OUTPUT_TRANSFORM_NORMAL;
2022-09-02 18:06:00 +02:00
bool ready = false;
2022-09-02 18:06:00 +02:00
zwlr_screencopy_frame_v1* pSCFrame = nullptr;
};