summaryrefslogtreecommitdiff
path: root/tests/src/android/renderscript/cts/asinh_f32.rs
blob: 82525074216219a46a529a4f4eeb736f45b8740e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma version(1)
#pragma rs java_package_name(android.renderscript.cts)

void asinh_f32_1 (const float* in, float* out) {
    *out = asinh(*in);
}

void asinh_f32_2 (const float2* in, float2* out) {
    *out = asinh(*in);
}

void asinh_f32_3 (const float3* in, float3* out) {
    *out = asinh(*in);
}

void asinh_f32_4 (const float4* in, float4* out) {
    *out = asinh(*in);
}