diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-29 15:37:53 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-29 15:37:53 +0100 |
commit | f85a7ab2055ddc8e2231a380f0c46e29e42c2072 (patch) | |
tree | 33cf9c1d086f3bd8332e36e97c73f793f18db11e /src/capture/ximage.c | |
parent | a41a32cb9079dc3c78414b7b0cdc68243333020d (diff) |
Revert "WIP: use compute shader instead of graphics shader for better performance (especially on amd)"
This reverts commit a41a32cb9079dc3c78414b7b0cdc68243333020d.
Diffstat (limited to 'src/capture/ximage.c')
-rw-r--r-- | src/capture/ximage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/capture/ximage.c b/src/capture/ximage.c index ac00d72..259761d 100644 --- a/src/capture/ximage.c +++ b/src/capture/ximage.c @@ -160,7 +160,7 @@ static int gsr_capture_ximage_capture(gsr_capture *cap, gsr_capture_metadata *ca gsr_color_conversion_draw(color_conversion, self->texture_id, target_pos, output_size, (vec2i){0, 0}, self->capture_size, - GSR_ROT_0, false, GSR_SOURCE_COLOR_RGB); + 0.0f, false, GSR_SOURCE_COLOR_RGB); if(self->params.record_cursor && self->cursor.visible) { const vec2d scale = { @@ -181,7 +181,7 @@ static int gsr_capture_ximage_capture(gsr_capture *cap, gsr_capture_metadata *ca 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, - GSR_ROT_0, false, GSR_SOURCE_COLOR_RGB); + 0.0f, false, GSR_SOURCE_COLOR_RGB); self->params.egl->glDisable(GL_SCISSOR_TEST); } |