blob: 6d2c8fc7da62dd6689d7212b674b9c99c751ca21 [file] [log] [blame]
SKIP: FAILED
Validation Failure:
#include <metal_stdlib>
using namespace metal;
void fwidth_5d1b39() {
float3 res = fwidth(float3());
}
vertex void vertex_main() {
fwidth_5d1b39();
return;
}
fragment void fragment_main() {
fwidth_5d1b39();
return;
}
kernel void compute_main() {
fwidth_5d1b39();
return;
}
tint_6o3PFV.metal:5:10: warning: unused variable 'res' [-Wunused-variable]
float3 res = fwidth(float3());
^
tint_6o3PFV.metal:8:13: error: vertex function 'vertex_main' uses unsupported builtin functions
vertex void vertex_main() {
^
note: function air.fwidth.v3f32 is not allowed within a vertex function
tint_6o3PFV.metal:18:13: error: kernel function 'compute_main' uses unsupported builtin functions
kernel void compute_main() {
^
note: function air.fwidth.v3f32 is not allowed within a kernel function
1 warning and 2 errors generated.