36 lines
710 B
Plaintext
36 lines
710 B
Plaintext
SKIP: FAILED
|
|
|
|
|
|
|
|
Validation Failure:
|
|
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void textureSampleLevel_1b0291() {
|
|
float res = arg_0.sample(arg_1, float3(), level(1));
|
|
}
|
|
|
|
vertex void vertex_main() {
|
|
textureSampleLevel_1b0291();
|
|
return;
|
|
}
|
|
|
|
fragment void fragment_main() {
|
|
textureSampleLevel_1b0291();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
textureSampleLevel_1b0291();
|
|
return;
|
|
}
|
|
|
|
|
|
tint_i62KS7.metal:5:15: error: use of undeclared identifier 'arg_0'
|
|
float res = arg_0.sample(arg_1, float3(), level(1));
|
|
^
|
|
tint_i62KS7.metal:5:28: error: use of undeclared identifier 'arg_1'
|
|
float res = arg_0.sample(arg_1, float3(), level(1));
|
|
^
|
|
2 errors generated.
|