39 lines
990 B
Plaintext
39 lines
990 B
Plaintext
|
SKIP: FAILED
|
||
|
|
||
|
|
||
|
|
||
|
Validation Failure:
|
||
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void textureDimensions_63f3cf() {
|
||
|
int3 res = int3(arg_0.get_width(), arg_0.get_height(), arg_0.get_depth());
|
||
|
}
|
||
|
|
||
|
vertex void vertex_main() {
|
||
|
textureDimensions_63f3cf();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
fragment void fragment_main() {
|
||
|
textureDimensions_63f3cf();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
kernel void compute_main() {
|
||
|
textureDimensions_63f3cf();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
|
||
|
tint_xOZqUk.metal:5:19: error: use of undeclared identifier 'arg_0'
|
||
|
int3 res = int3(arg_0.get_width(), arg_0.get_height(), arg_0.get_depth());
|
||
|
^
|
||
|
tint_xOZqUk.metal:5:38: error: use of undeclared identifier 'arg_0'
|
||
|
int3 res = int3(arg_0.get_width(), arg_0.get_height(), arg_0.get_depth());
|
||
|
^
|
||
|
tint_xOZqUk.metal:5:58: error: use of undeclared identifier 'arg_0'
|
||
|
int3 res = int3(arg_0.get_width(), arg_0.get_height(), arg_0.get_depth());
|
||
|
^
|
||
|
3 errors generated.
|