mirror of
https://github.com/hyprwm/hyprpicker.git
synced 2024-12-23 06:39:47 +01:00
16 lines
No EOL
452 B
C++
16 lines
No EOL
452 B
C++
#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;
|
|
|
|
bool ready = false;
|
|
|
|
zwlr_screencopy_frame_v1* pSCFrame = nullptr;
|
|
}; |