38 lines
713 B
Plaintext
38 lines
713 B
Plaintext
intrinsics/gen/isNormal/863dcd.wgsl:28:25 warning: use of deprecated intrinsic
|
|
var res: vec4<bool> = isNormal(vec4<f32>());
|
|
^^^^^^^^
|
|
|
|
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
void isNormal_863dcd() {
|
|
bool4 res = isnormal(float4());
|
|
}
|
|
|
|
float4 vertex_main_inner() {
|
|
isNormal_863dcd();
|
|
return float4();
|
|
}
|
|
|
|
vertex tint_symbol vertex_main() {
|
|
float4 const inner_result = vertex_main_inner();
|
|
tint_symbol wrapper_result = {};
|
|
wrapper_result.value = inner_result;
|
|
return wrapper_result;
|
|
}
|
|
|
|
fragment void fragment_main() {
|
|
isNormal_863dcd();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
isNormal_863dcd();
|
|
return;
|
|
}
|
|
|