rsdBcc.h revision 41d6c769f5fa21da3cbc116af95d88949a4a5c76
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
23
24bool rsdScriptInit(const android::renderscript::Context *, android::renderscript::ScriptC *,
25                   char const *resName, char const *cacheDir,
26                   uint8_t const *bitcode, size_t bitcodeSize, uint32_t flags);
27bool rsdInitIntrinsic(const android::renderscript::Context *rsc,
28                      android::renderscript::Script *s,
29                      RsScriptIntrinsicID iid,
30                      android::renderscript::Element *e);
31
32void rsdScriptInvokeFunction(const android::renderscript::Context *dc,
33                             android::renderscript::Script *script,
34                             uint32_t slot,
35                             const void *params,
36                             size_t paramLength);
37
38void rsdScriptInvokeForEach(const android::renderscript::Context *rsc,
39                            android::renderscript::Script *s,
40                            uint32_t slot,
41                            const android::renderscript::Allocation * ain,
42                            android::renderscript::Allocation * aout,
43                            const void * usr,
44                            uint32_t usrLen,
45                            const RsScriptCall *sc);
46
47int rsdScriptInvokeRoot(const android::renderscript::Context *dc,
48                        android::renderscript::Script *script);
49void rsdScriptInvokeInit(const android::renderscript::Context *dc,
50                         android::renderscript::Script *script);
51void rsdScriptInvokeFreeChildren(const android::renderscript::Context *dc,
52                                 android::renderscript::Script *script);
53
54void rsdScriptSetGlobalVar(const android::renderscript::Context *,
55                           const android::renderscript::Script *,
56                           uint32_t slot, void *data, size_t dataLen);
57void rsdScriptSetGlobalVarWithElemDims(const android::renderscript::Context *,
58                                       const android::renderscript::Script *,
59                                       uint32_t slot, void *data,
60                                       size_t dataLength,
61                                       const android::renderscript::Element *,
62                                       const size_t *dims,
63                                       size_t dimLength);
64void rsdScriptSetGlobalBind(const android::renderscript::Context *,
65                            const android::renderscript::Script *,
66                            uint32_t slot, android::renderscript::Allocation *data);
67void rsdScriptSetGlobalObj(const android::renderscript::Context *,
68                           const android::renderscript::Script *,
69                           uint32_t slot, android::renderscript::ObjectBase *data);
70
71void rsdScriptSetGlobal(const android::renderscript::Context *dc,
72                        const android::renderscript::Script *script,
73                        uint32_t slot,
74                        void *data,
75                        size_t dataLength);
76void rsdScriptGetGlobal(const android::renderscript::Context *dc,
77                        const android::renderscript::Script *script,
78                        uint32_t slot,
79                        void *data,
80                        size_t dataLength);
81void rsdScriptDestroy(const android::renderscript::Context *dc,
82                      android::renderscript::Script *script);
83
84android::renderscript::Allocation * rsdScriptGetAllocationForPointer(
85                        const android::renderscript::Context *dc,
86                        const android::renderscript::Script *script,
87                        const void *);
88
89#endif
90