23 lines
298 B
Plaintext
23 lines
298 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void isNormal_c6e880() {
|
|
bool res = isnormal(1.0f);
|
|
}
|
|
|
|
vertex void vertex_main() {
|
|
isNormal_c6e880();
|
|
return;
|
|
}
|
|
|
|
fragment void fragment_main() {
|
|
isNormal_c6e880();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
isNormal_c6e880();
|
|
return;
|
|
}
|
|
|