1 /*
2 * Copyright (C) 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 #include "rsContext.h"
18 #include "rsScriptIntrinsic.h"
19 #include <time.h>
20
21 using namespace android;
22 using namespace android::renderscript;
23
ScriptIntrinsic(Context * rsc)24 ScriptIntrinsic::ScriptIntrinsic(Context *rsc) : Script(rsc) {
25 }
26
~ScriptIntrinsic()27 ScriptIntrinsic::~ScriptIntrinsic() {
28 }
29
init(Context * rsc,RsScriptIntrinsicID iid,Element * e)30 bool ScriptIntrinsic::init(Context *rsc, RsScriptIntrinsicID iid, Element *e) {
31 mIntrinsicID = iid;
32 mElement.set(e);
33 mSlots = new ObjectBaseRef<Allocation>[2];
34 mTypes = new ObjectBaseRef<const Type>[2];
35
36 rsc->mHal.funcs.script.initIntrinsic(rsc, this, iid, e);
37
38
39 return true;
40 }
41
freeChildren()42 bool ScriptIntrinsic::freeChildren() {
43 return false;
44 }
45
setupScript(Context * rsc)46 void ScriptIntrinsic::setupScript(Context *rsc) {
47 }
48
run(Context * rsc)49 uint32_t ScriptIntrinsic::run(Context *rsc) {
50 rsAssert(!"ScriptIntrinsic::run - should not happen");
51 return 0;
52 }
53
54
runForEach(Context * rsc,uint32_t slot,const Allocation * ain,Allocation * aout,const void * usr,size_t usrBytes,const RsScriptCall * sc)55 void ScriptIntrinsic::runForEach(Context *rsc,
56 uint32_t slot,
57 const Allocation * ain,
58 Allocation * aout,
59 const void * usr,
60 size_t usrBytes,
61 const RsScriptCall *sc) {
62
63 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
64 }
65
Invoke(Context * rsc,uint32_t slot,const void * data,size_t len)66 void ScriptIntrinsic::Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) {
67 }
68
serialize(Context * rsc,OStream * stream) const69 void ScriptIntrinsic::serialize(Context *rsc, OStream *stream) const {
70 }
71
getClassId() const72 RsA3DClassID ScriptIntrinsic::getClassId() const {
73 return (RsA3DClassID)0;
74 }
75
76
77
78 namespace android {
79 namespace renderscript {
80
81
rsi_ScriptIntrinsicCreate(Context * rsc,uint32_t id,RsElement ve)82 RsScript rsi_ScriptIntrinsicCreate(Context *rsc, uint32_t id, RsElement ve) {
83 ScriptIntrinsic *si = new ScriptIntrinsic(rsc);
84 ALOGE("rsi_ScriptIntrinsicCreate %i", id);
85 if (!si->init(rsc, (RsScriptIntrinsicID)id, (Element *)ve)) {
86 delete si;
87 return NULL;
88 }
89 return si;
90 }
91
92 }
93 }
94
95
96