2021-01-22 14:51:13 +00:00
|
|
|
|
2021-01-27 00:58:22 +00:00
|
|
|
out vec4 sk_FragColor;
|
2021-01-26 21:28:12 +00:00
|
|
|
uniform vec4 colorRed;
|
|
|
|
uniform vec4 colorGreen;
|
2022-02-07 19:09:54 +00:00
|
|
|
bool test_eq_half_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
bool test_matrix_op_matrix_float_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
bool test_matrix_op_matrix_half_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
2022-03-25 19:32:51 +00:00
|
|
|
bool test_vector_op_matrix_float_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
bool test_vector_op_matrix_half_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
bool test_matrix_op_vector_float_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
bool test_matrix_op_vector_half_b() {
|
|
|
|
bool ok = true;
|
|
|
|
return ok;
|
|
|
|
}
|
2021-01-22 14:51:13 +00:00
|
|
|
vec4 main() {
|
2021-03-15 22:08:38 +00:00
|
|
|
bool _0_ok = true;
|
2022-03-25 19:32:51 +00:00
|
|
|
return ((((((_0_ok && test_eq_half_b()) && test_matrix_op_matrix_float_b()) && test_matrix_op_matrix_half_b()) && test_vector_op_matrix_float_b()) && test_vector_op_matrix_half_b()) && test_matrix_op_vector_float_b()) && test_matrix_op_vector_half_b() ? colorGreen : colorRed;
|
2021-01-22 14:51:13 +00:00
|
|
|
}
|