mirror of
https://github.com/hyprwm/Hyprland
synced 2025-12-20 14:10:03 +01:00
12 lines
330 B
C++
12 lines
330 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <wayland-server-protocol.h>
|
||
|
|
|
||
|
|
// includes box and vector as well
|
||
|
|
#include <hyprutils/math/Region.hpp>
|
||
|
|
|
||
|
|
using namespace Hyprutils::Math;
|
||
|
|
|
||
|
|
eTransform wlTransformToHyprutils(wl_output_transform t);
|
||
|
|
void projectBox(float mat[9], CBox& box, eTransform transform, float rotation, const float projection[9]);
|