2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
2021-12-09 15:45:03 +00:00
|
|
|
struct S {
|
|
|
|
mat3 matrix;
|
|
|
|
vec3 vector;
|
|
|
|
};
|
2021-11-16 15:15:36 +00:00
|
|
|
|
|
|
|
layout (binding = 0) uniform S_1 {
|
|
|
|
mat3 matrix;
|
|
|
|
vec3 vector;
|
|
|
|
} data;
|
|
|
|
|
|
|
|
void tint_symbol() {
|
|
|
|
vec3 x = (data.matrix * data.vector);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
void main() {
|
|
|
|
tint_symbol();
|
|
|
|
}
|
|
|
|
|
|
|
|
|