2021-06-03 11:26:17 +00:00
|
|
|
SKIP: FAILED
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Validation Failure:
|
|
|
|
void fma_c10ba3() {
|
|
|
|
float res = fma(1.0f, 1.0f, 1.0f);
|
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
struct tint_symbol {
|
|
|
|
float4 value : SV_Position;
|
|
|
|
};
|
|
|
|
|
|
|
|
tint_symbol vertex_main() {
|
2021-06-03 11:26:17 +00:00
|
|
|
fma_c10ba3();
|
2021-06-16 09:19:36 +00:00
|
|
|
const tint_symbol tint_symbol_1 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
|
|
|
|
return tint_symbol_1;
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
2021-06-16 09:19:36 +00:00
|
|
|
|
2021-06-03 11:26:17 +00:00
|
|
|
void fragment_main() {
|
|
|
|
fma_c10ba3();
|
|
|
|
return;
|
|
|
|
}
|
2021-06-16 09:19:36 +00:00
|
|
|
|
2021-06-03 11:26:17 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void compute_main() {
|
|
|
|
fma_c10ba3();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
tint_tqaLcU:2:15: error: no matching function for call to 'fma'
|
2021-06-03 11:26:17 +00:00
|
|
|
float res = fma(1.0f, 1.0f, 1.0f);
|
|
|
|
^~~
|
|
|
|
note: candidate function not viable: no known conversion from 'float' to 'double' for 1st argument
|
|
|
|
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
tint_tqaLcU:2:15: error: no matching function for call to 'fma'
|
2021-06-03 11:26:17 +00:00
|
|
|
float res = fma(1.0f, 1.0f, 1.0f);
|
|
|
|
^~~
|
|
|
|
note: candidate function not viable: no known conversion from 'float' to 'double' for 1st argument
|
|
|
|
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
tint_tqaLcU:2:15: error: no matching function for call to 'fma'
|
2021-06-03 11:26:17 +00:00
|
|
|
float res = fma(1.0f, 1.0f, 1.0f);
|
|
|
|
^~~
|
|
|
|
note: candidate function not viable: no known conversion from 'float' to 'double' for 1st argument
|
|
|
|
|