aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-04-04 01:15:07 +0200
committerdec05eba <dec05eba@protonmail.com>2025-04-04 01:15:07 +0200
commit12dd2cd3e101e2336a4db96ef381dfcc88bcde73 (patch)
tree298c2b3692f94106fe7450a7907f7d1c03295ac7 /include
parent33467cb7f4bb4b81cff247e4d28c88f00c8bbdf6 (diff)
Optimize compute shaders
Diffstat (limited to 'include')
-rw-r--r--include/color_conversion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/color_conversion.h b/include/color_conversion.h
index 1c067e2..4c3b615 100644
--- a/include/color_conversion.h
+++ b/include/color_conversion.h
@@ -6,7 +6,7 @@
#include "vec2.h"
#include <stdbool.h>
-#define GSR_COLOR_CONVERSION_MAX_SHADERS 6
+#define GSR_COLOR_CONVERSION_MAX_SHADERS 12
#define GSR_COLOR_CONVERSION_MAX_FRAMEBUFFERS 2
typedef enum {
@@ -72,7 +72,7 @@ typedef struct {
int gsr_color_conversion_init(gsr_color_conversion *self, const gsr_color_conversion_params *params);
void gsr_color_conversion_deinit(gsr_color_conversion *self);
-void gsr_color_conversion_draw(gsr_color_conversion *self, unsigned int texture_id, vec2i destination_pos, vec2i destination_size, vec2i source_pos, vec2i source_size, vec2i texture_size, gsr_rotation rotation, bool external_texture, gsr_source_color source_color);
+void gsr_color_conversion_draw(gsr_color_conversion *self, unsigned int texture_id, vec2i destination_pos, vec2i destination_size, vec2i source_pos, vec2i source_size, vec2i texture_size, gsr_rotation rotation, gsr_source_color source_color, bool external_texture, bool alpha_blending);
void gsr_color_conversion_clear(gsr_color_conversion *self);
gsr_rotation gsr_monitor_rotation_to_rotation(gsr_monitor_rotation monitor_rotation);