Revert "WIP: use compute shader instead of graphics shader for better performance (especially on amd)"

This reverts commit a41a32cb90.
This commit is contained in:
dec05eba
2025-03-29 15:37:53 +01:00
parent a41a32cb90
commit f85a7ab205
18 changed files with 746 additions and 331 deletions

View File

@@ -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);