First Commit

This commit is contained in:
2025-02-06 22:24:29 +08:00
parent ed7df4c81e
commit 7539e6a53c
18116 changed files with 6181499 additions and 0 deletions

28
externals/glslang/Test/spv.matFun.vert vendored Normal file
View File

@@ -0,0 +1,28 @@
#version 400
uniform bl {
uniform mat4 m4;
uniform mat3 m3;
} bName;
in vec3 v3;
vec3 xf(mat3 m, vec3 v)
{
return v * m;
}
mat3 Mat3(mat4 m)
{
return mat3(m[0].xyz, m[1].xyz, m[2].xyz);
}
vec3 mxv(mat4 m4, vec3 v)
{
return v * Mat3(m4);
}
void main()
{
gl_Position = vec4(mxv(bName.m4, v3) + xf(bName.m3, v3), 1.0);
}