blob: bd94f0dafc29bbdc4402a3cfed609fe3e2aba826 [file] [log] [blame]
Jean-Luc Brouillet3d3e5852014-02-06 18:21:58 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma version(1)
18#pragma rs java_package_name(android.renderscript.cts)
19
20// Don't edit this file! It is auto-generated by frameworks/rs/api/gen_runtime.
21
22
23float __attribute__((kernel)) testSinhFloatFloat(float in) {
24 return sinh(in);
25}
26
27float2 __attribute__((kernel)) testSinhFloat2Float2(float2 in) {
28 return sinh(in);
29}
30
31float3 __attribute__((kernel)) testSinhFloat3Float3(float3 in) {
32 return sinh(in);
33}
34
35float4 __attribute__((kernel)) testSinhFloat4Float4(float4 in) {
36 return sinh(in);
37}