diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-30 23:00:54 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-30 23:00:54 +0200 |
commit | 8feb94f518ca8532bc973f08c2f7455f0eab3e40 (patch) | |
tree | f85d355df29e35df41ac7c8610ce142f2ffa6466 /src/capture/xcomposite.c | |
parent | 6acd65a9c203b01055c12a5db4a80c6662450026 (diff) |
Fix incorrect region when monitor is rotated
Diffstat (limited to 'src/capture/xcomposite.c')
-rw-r--r-- | src/capture/xcomposite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/capture/xcomposite.c b/src/capture/xcomposite.c index 86f7388..2d0574c 100644 --- a/src/capture/xcomposite.c +++ b/src/capture/xcomposite.c @@ -258,7 +258,7 @@ static int gsr_capture_xcomposite_capture(gsr_capture *cap, gsr_capture_metadata gsr_color_conversion_draw(color_conversion, window_texture_get_opengl_texture_id(&self->window_texture), target_pos, output_size, - (vec2i){0, 0}, self->texture_size, + (vec2i){0, 0}, self->texture_size, self->texture_size, GSR_ROT_0, false, GSR_SOURCE_COLOR_RGB); if(self->params.record_cursor && self->cursor.visible) { @@ -279,7 +279,7 @@ static int gsr_capture_xcomposite_capture(gsr_capture *cap, gsr_capture_metadata gsr_color_conversion_draw(color_conversion, self->cursor.texture_id, cursor_pos, (vec2i){self->cursor.size.x * scale.x, self->cursor.size.y * scale.y}, - (vec2i){0, 0}, self->cursor.size, + (vec2i){0, 0}, self->cursor.size, self->cursor.size, GSR_ROT_0, false, GSR_SOURCE_COLOR_RGB); } |