aboutsummaryrefslogtreecommitdiff
path: root/include/image_writer.h
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 /include/image_writer.h
parent634a563bc0e7d23040e70f90e7ccc498aa7db41e (diff)
WIP: use compute shader instead of graphics shader for better performance (especially on amd)
Diffstat (limited to 'include/image_writer.h')
-rw-r--r--include/image_writer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image_writer.h b/include/image_writer.h
index 400edd0..65e7497 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 */
+/* |memory| is taken as a reference. The data is expected to be in rgba8 format (8 bit rgba) */
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);