dawn-cmake/test/intrinsics/gen/textureDimensions/1f20c5.wgsl.expected.msl

36 lines
729 B
Plaintext

SKIP: FAILED
Validation Failure:
#include <metal_stdlib>
using namespace metal;
void textureDimensions_1f20c5() {
int2 res = int2(arg_0.get_width(), arg_0.get_height());
}
vertex void vertex_main() {
textureDimensions_1f20c5();
return;
}
fragment void fragment_main() {
textureDimensions_1f20c5();
return;
}
kernel void compute_main() {
textureDimensions_1f20c5();
return;
}
tint_u7r45E.metal:5:19: error: use of undeclared identifier 'arg_0'
int2 res = int2(arg_0.get_width(), arg_0.get_height());
^
tint_u7r45E.metal:5:38: error: use of undeclared identifier 'arg_0'
int2 res = int2(arg_0.get_width(), arg_0.get_height());
^
2 errors generated.