aboutsummaryrefslogtreecommitdiff
path: root/src/capture/nvfbc.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-29 13:27:20 +0100
committerdec05eba <dec05eba@protonmail.com>2025-03-29 13:29:10 +0100
commita41a32cb9079dc3c78414b7b0cdc68243333020d (patch)
tree5776bf16deb9f4e18cf744d474e0d1f0dc19c081 /src/capture/nvfbc.c
parent634a563bc0e7d23040e70f90e7ccc498aa7db41e (diff)
WIP: use compute shader instead of graphics shader for better performance (especially on amd)
Diffstat (limited to 'src/capture/nvfbc.c')
-rw-r--r--src/capture/nvfbc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/capture/nvfbc.c b/src/capture/nvfbc.c
index b6a3671..5f47b00 100644
--- a/src/capture/nvfbc.c
+++ b/src/capture/nvfbc.c
@@ -390,16 +390,16 @@ static int gsr_capture_nvfbc_capture(gsr_capture *cap, gsr_capture_metadata *cap
return 0;
}
- self->params.egl->glFlush();
- self->params.egl->glFinish();
+ //self->params.egl->glFlush();
+ //self->params.egl->glFinish();
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,
- 0.0f, false, GSR_SOURCE_COLOR_BGR);
+ GSR_ROT_0, false, GSR_SOURCE_COLOR_BGR);
- self->params.egl->glFlush();
- self->params.egl->glFinish();
+ //self->params.egl->glFlush();
+ //self->params.egl->glFinish();
return 0;
}