fix: remove incorrect alpha_blend in bgimage.slang

This commit is contained in:
copilot-swe-agent[bot]
2026-07-03 09:14:58 +00:00
committed by GitHub
parent 4bb534f72c
commit ebb9b4c1c4
18 changed files with 1659 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#version 140
#line 0 7893001
#define left 0
#define top 1
#define right 2
#define bottom 3
const ivec2 vertex_pos_map[4] = ivec2[4](
ivec2(right, top),
ivec2(right, bottom),
ivec2(left, bottom),
ivec2(left, top)
);
const vec4 dest_rect = vec4(-1, 1, 1, -1);
void main() {
ivec2 pos = vertex_pos_map[gl_VertexID];
gl_Position = vec4(dest_rect[pos.x], dest_rect[pos.y], 0, 1);
}