mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
rootston: fix rotated views rendering
This commit is contained in:
parent
62fd03a7be
commit
bfaf06f04b
1 changed files with 9 additions and 4 deletions
|
@ -260,15 +260,19 @@ static void scale_box(struct wlr_box *box, float scale) {
|
||||||
|
|
||||||
static void render_texture(struct wlr_output *wlr_output,
|
static void render_texture(struct wlr_output *wlr_output,
|
||||||
pixman_region32_t *output_damage, struct wlr_texture *texture,
|
pixman_region32_t *output_damage, struct wlr_texture *texture,
|
||||||
const struct wlr_box *box, const float matrix[static 9], float alpha) {
|
const struct wlr_box *box, const float matrix[static 9],
|
||||||
|
float rotation, float alpha) {
|
||||||
struct wlr_renderer *renderer =
|
struct wlr_renderer *renderer =
|
||||||
wlr_backend_get_renderer(wlr_output->backend);
|
wlr_backend_get_renderer(wlr_output->backend);
|
||||||
assert(renderer);
|
assert(renderer);
|
||||||
|
|
||||||
|
struct wlr_box rotated;
|
||||||
|
wlr_box_rotated_bounds(&rotated, box, rotation);
|
||||||
|
|
||||||
pixman_region32_t damage;
|
pixman_region32_t damage;
|
||||||
pixman_region32_init(&damage);
|
pixman_region32_init(&damage);
|
||||||
pixman_region32_union_rect(&damage, &damage, box->x, box->y,
|
pixman_region32_union_rect(&damage, &damage, rotated.x, rotated.y,
|
||||||
box->width, box->height);
|
rotated.width, rotated.height);
|
||||||
pixman_region32_intersect(&damage, &damage, output_damage);
|
pixman_region32_intersect(&damage, &damage, output_damage);
|
||||||
bool damaged = pixman_region32_not_empty(&damage);
|
bool damaged = pixman_region32_not_empty(&damage);
|
||||||
if (!damaged) {
|
if (!damaged) {
|
||||||
|
@ -308,7 +312,8 @@ static void render_surface_iterator(struct roots_output *output,
|
||||||
wlr_matrix_project_box(matrix, &box, transform, rotation,
|
wlr_matrix_project_box(matrix, &box, transform, rotation,
|
||||||
wlr_output->transform_matrix);
|
wlr_output->transform_matrix);
|
||||||
|
|
||||||
render_texture(wlr_output, output_damage, texture, &box, matrix, alpha);
|
render_texture(wlr_output, output_damage,
|
||||||
|
texture, &box, matrix, rotation, alpha);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void get_decoration_box(struct roots_view *view,
|
static void get_decoration_box(struct roots_view *view,
|
||||||
|
|
Loading…
Reference in a new issue