blob: 332afa32da6fbfdb86269fab8d90aa5a852b72e9 [file] [log] [blame]
SKIP: FAILED
Validation Failure:
#include <metal_stdlib>
using namespace metal;
void textureDimensions_26ef6c() {
int2 res = int2(arg_0.get_width(), arg_0.get_height());
}
vertex void vertex_main() {
textureDimensions_26ef6c();
return;
}
fragment void fragment_main() {
textureDimensions_26ef6c();
return;
}
kernel void compute_main() {
textureDimensions_26ef6c();
return;
}
tint_AGQyA0.metal:5:19: error: use of undeclared identifier 'arg_0'
int2 res = int2(arg_0.get_width(), arg_0.get_height());
^
tint_AGQyA0.metal:5:38: error: use of undeclared identifier 'arg_0'
int2 res = int2(arg_0.get_width(), arg_0.get_height());
^
2 errors generated.