1/*
2 * Copyright (C) 2011-2012 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#ifndef RSD_BCC_H
18#define RSD_BCC_H
19
20#include <rs_hal.h>
21#include <rsRuntime.h>
22
23bool rsdScriptInit(const android::renderscript::Context *, android::renderscript::ScriptC *,
24                   char const *resName, char const *cacheDir,
25                   uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags);
26bool rsdInitIntrinsic(const android::renderscript::Context *rsc,
27                      android::renderscript::Script *s,
28                      RsScriptIntrinsicID iid,
29                      android::renderscript::Element *e);
30
31void rsdScriptInvokeFunction(const android::renderscript::Context *dc,
32                             android::renderscript::Script *script,
33                             uint32_t slot,
34                             const void *params,
35                             size_t paramLength);
36
37void rsdScriptInvokeForEach(const android::renderscript::Context *rsc,
38                            android::renderscript::Script *s,
39                            uint32_t slot,
40                            const android::renderscript::Allocation * ain,
41                            android::renderscript::Allocation * aout,
42                            const void * usr,
43                            size_t usrLen,
44                            const RsScriptCall *sc);
45
46void rsdScriptInvokeForEachMulti(const android::renderscript::Context *rsc,
47                                 android::renderscript::Script *s,
48                                 uint32_t slot,
49                                 const android::renderscript::Allocation ** ains,
50                                 size_t inLen,
51                                 android::renderscript::Allocation * aout,
52                                 const void * usr,
53                                 size_t usrLen,
54                                 const RsScriptCall *sc);
55
56int rsdScriptInvokeRoot(const android::renderscript::Context *dc,
57                        android::renderscript::Script *script);
58void rsdScriptInvokeInit(const android::renderscript::Context *dc,
59                         android::renderscript::Script *script);
60void rsdScriptInvokeFreeChildren(const android::renderscript::Context *dc,
61                                 android::renderscript::Script *script);
62
63void rsdScriptSetGlobalVar(const android::renderscript::Context *,
64                           const android::renderscript::Script *,
65                           uint32_t slot, void *data, size_t dataLen);
66void rsdScriptGetGlobalVar(const android::renderscript::Context *,
67                           const android::renderscript::Script *,
68                           uint32_t slot, void *data, size_t dataLen);
69void rsdScriptSetGlobalVarWithElemDims(const android::renderscript::Context *,
70                                       const android::renderscript::Script *,
71                                       uint32_t slot, void *data,
72                                       size_t dataLength,
73                                       const android::renderscript::Element *,
74                                       const uint32_t *dims,
75                                       size_t dimLength);
76void rsdScriptSetGlobalBind(const android::renderscript::Context *,
77                            const android::renderscript::Script *,
78                            uint32_t slot, android::renderscript::Allocation *data);
79void rsdScriptSetGlobalObj(const android::renderscript::Context *,
80                           const android::renderscript::Script *,
81                           uint32_t slot, android::renderscript::ObjectBase *data);
82
83void rsdScriptSetGlobal(const android::renderscript::Context *dc,
84                        const android::renderscript::Script *script,
85                        uint32_t slot,
86                        void *data,
87                        size_t dataLength);
88void rsdScriptGetGlobal(const android::renderscript::Context *dc,
89                        const android::renderscript::Script *script,
90                        uint32_t slot,
91                        void *data,
92                        size_t dataLength);
93void rsdScriptDestroy(const android::renderscript::Context *dc,
94                      android::renderscript::Script *script);
95
96android::renderscript::Allocation * rsdScriptGetAllocationForPointer(
97                        const android::renderscript::Context *dc,
98                        const android::renderscript::Script *script,
99                        const void *);
100
101void rsdScriptUpdateCachedObject(const android::renderscript::Context *rsc,
102                                 const android::renderscript::Script *script,
103                                 android::renderscript::rs_script *obj);
104
105
106
107#endif
108