dawn-cmake/test/intrinsics/gen/textureLoad/749704.wgsl.expected.msl

33 lines
487 B
Plaintext

SKIP: FAILED
Validation Failure:
#include <metal_stdlib>
using namespace metal;
void textureLoad_749704() {
uint4 res = arg_0.read(int2());
}
vertex void vertex_main() {
textureLoad_749704();
return;
}
fragment void fragment_main() {
textureLoad_749704();
return;
}
kernel void compute_main() {
textureLoad_749704();
return;
}
tint_h41DHl.metal:5:15: error: use of undeclared identifier 'arg_0'
uint4 res = arg_0.read(int2());
^
1 error generated.