Decos: Window decoration flags, shadow improvements (#3739)

This commit is contained in:
Vaxry
2023-11-04 13:10:52 +00:00
committed by GitHub
parent 54e51b7acf
commit 73e78f05ad
17 changed files with 192 additions and 75 deletions

View File

@@ -37,13 +37,16 @@ uniform mat3 proj;
uniform vec4 color;
attribute vec2 pos;
attribute vec2 texcoord;
attribute vec2 texcoordMatte;
varying vec4 v_color;
varying vec2 v_texcoord;
varying vec2 v_texcoordMatte;
void main() {
gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);
v_color = color;
v_texcoord = texcoord;
v_texcoordMatte = texcoordMatte;
})#";
inline const std::string QUADFRAGSRC = R"#(