dawn-cmake/test/intrinsics/gen/textureDimensions/2fe1cc.wgsl.expected.msl

36 lines
736 B
Plaintext
Raw Normal View History

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