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 /include/image_writer.h | |
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 'include/image_writer.h')
-rw-r--r-- | include/image_writer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image_writer.h b/include/image_writer.h index 65e7497..400edd0 100644 --- a/include/image_writer.h +++ b/include/image_writer.h @@ -25,7 +25,7 @@ typedef struct { } gsr_image_writer; bool gsr_image_writer_init_opengl(gsr_image_writer *self, gsr_egl *egl, int width, int height); -/* |memory| is taken as a reference. The data is expected to be in rgba8 format (8 bit rgba) */ +/* |memory| is taken as a reference */ bool gsr_image_writer_init_memory(gsr_image_writer *self, const void *memory, int width, int height); void gsr_image_writer_deinit(gsr_image_writer *self); |