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