36 lines
724 B
Plaintext
36 lines
724 B
Plaintext
|
SKIP: FAILED
|
||
|
|
||
|
|
||
|
|
||
|
Validation Failure:
|
||
|
#include <metal_stdlib>
|
||
|
|
||
|
using namespace metal;
|
||
|
void textureSampleLevel_c32df7() {
|
||
|
float4 res = arg_0.sample(arg_1, float3(), level(1.0f));
|
||
|
}
|
||
|
|
||
|
vertex void vertex_main() {
|
||
|
textureSampleLevel_c32df7();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
fragment void fragment_main() {
|
||
|
textureSampleLevel_c32df7();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
kernel void compute_main() {
|
||
|
textureSampleLevel_c32df7();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
|
||
|
tint_OIsoHc.metal:5:16: error: use of undeclared identifier 'arg_0'
|
||
|
float4 res = arg_0.sample(arg_1, float3(), level(1.0f));
|
||
|
^
|
||
|
tint_OIsoHc.metal:5:29: error: use of undeclared identifier 'arg_1'
|
||
|
float4 res = arg_0.sample(arg_1, float3(), level(1.0f));
|
||
|
^
|
||
|
2 errors generated.
|