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 24 bool 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); 27 void rsdScriptInvokeFunction(const android::renderscript::Context *dc, 28 android::renderscript::Script *script, 29 uint32_t slot, 30 const void *params, 31 size_t paramLength); 32 33 void rsdScriptInvokeForEach(const android::renderscript::Context *rsc, 34 android::renderscript::Script *s, 35 uint32_t slot, 36 const android::renderscript::Allocation * ain, 37 android::renderscript::Allocation * aout, 38 const void * usr, 39 uint32_t usrLen, 40 const RsScriptCall *sc); 41 42 int rsdScriptInvokeRoot(const android::renderscript::Context *dc, 43 android::renderscript::Script *script); 44 void rsdScriptInvokeInit(const android::renderscript::Context *dc, 45 android::renderscript::Script *script); 46 void rsdScriptInvokeFreeChildren(const android::renderscript::Context *dc, 47 android::renderscript::Script *script); 48 49 void rsdScriptSetGlobalVar(const android::renderscript::Context *, 50 const android::renderscript::Script *, 51 uint32_t slot, void *data, size_t dataLen); 52 void rsdScriptSetGlobalVarWithElemDims(const android::renderscript::Context *, 53 const android::renderscript::Script *, 54 uint32_t slot, void *data, 55 size_t dataLength, 56 const android::renderscript::Element *, 57 const size_t *dims, 58 size_t dimLength); 59 void rsdScriptSetGlobalBind(const android::renderscript::Context *, 60 const android::renderscript::Script *, 61 uint32_t slot, void *data); 62 void rsdScriptSetGlobalObj(const android::renderscript::Context *, 63 const android::renderscript::Script *, 64 uint32_t slot, android::renderscript::ObjectBase *data); 65 66 void rsdScriptSetGlobal(const android::renderscript::Context *dc, 67 const android::renderscript::Script *script, 68 uint32_t slot, 69 void *data, 70 size_t dataLength); 71 void rsdScriptGetGlobal(const android::renderscript::Context *dc, 72 const android::renderscript::Script *script, 73 uint32_t slot, 74 void *data, 75 size_t dataLength); 76 void rsdScriptDestroy(const android::renderscript::Context *dc, 77 android::renderscript::Script *script); 78 79 80 #endif 81