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/nvfbc.c | |
parent | 6acd65a9c203b01055c12a5db4a80c6662450026 (diff) |
Fix incorrect region when monitor is rotated
Diffstat (limited to 'src/capture/nvfbc.c')
-rw-r--r-- | src/capture/nvfbc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/capture/nvfbc.c b/src/capture/nvfbc.c index 5f47b00..4ed19b3 100644 --- a/src/capture/nvfbc.c +++ b/src/capture/nvfbc.c @@ -363,6 +363,7 @@ static int gsr_capture_nvfbc_capture(gsr_capture *cap, gsr_capture_metadata *cap } vec2i frame_size = (vec2i){self->width, self->height}; + const vec2i original_frame_size = frame_size; if(self->params.region_size.x > 0 && self->params.region_size.y > 0) frame_size = self->params.region_size; @@ -395,7 +396,7 @@ static int gsr_capture_nvfbc_capture(gsr_capture *cap, gsr_capture_metadata *cap gsr_color_conversion_draw(color_conversion, self->setup_params.dwTextures[grab_params.dwTextureIndex], target_pos, (vec2i){output_size.x, output_size.y}, - self->params.region_position, frame_size, + self->params.region_position, frame_size, original_frame_size, GSR_ROT_0, false, GSR_SOURCE_COLOR_BGR); //self->params.egl->glFlush(); |