mirror of
https://github.com/hyprwm/hyprlock.git
synced 2024-11-16 23:05:58 +01:00
core: add support for 90/270 degree rotated monitors (#26)
This commit is contained in:
parent
a756d761eb
commit
7b15d34f0a
1 changed files with 7 additions and 1 deletions
|
@ -11,7 +11,13 @@ static void handleGeometry(void* data, wl_output* output, int32_t x, int32_t y,
|
||||||
|
|
||||||
static void handleMode(void* data, wl_output* output, uint32_t flags, int32_t width, int32_t height, int32_t refresh) {
|
static void handleMode(void* data, wl_output* output, uint32_t flags, int32_t width, int32_t height, int32_t refresh) {
|
||||||
const auto POUTPUT = (COutput*)data;
|
const auto POUTPUT = (COutput*)data;
|
||||||
POUTPUT->size = {width, height};
|
|
||||||
|
// handle portrait mode and flipped cases
|
||||||
|
if (POUTPUT->transform == WL_OUTPUT_TRANSFORM_270 || POUTPUT->transform == WL_OUTPUT_TRANSFORM_90 ||
|
||||||
|
POUTPUT->transform == WL_OUTPUT_TRANSFORM_FLIPPED_270 || POUTPUT->transform == WL_OUTPUT_TRANSFORM_FLIPPED_90)
|
||||||
|
POUTPUT->size = {height, width};
|
||||||
|
else
|
||||||
|
POUTPUT->size = {width, height};
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handleDone(void* data, wl_output* output) {
|
static void handleDone(void* data, wl_output* output) {
|
||||||
|
|
Loading…
Reference in a new issue