rsCpuIntrinsic.h revision c905efd76fdcc1b8846b229bf7d991d185a7b4b7
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#ifndef RSD_CPU_SCRIPT_INTRINSIC_H
18#define RSD_CPU_SCRIPT_INTRINSIC_H
19
20#include "rsCpuScript.h"
21
22
23namespace android {
24namespace renderscript {
25
26
27class RsdCpuScriptIntrinsic : public RsdCpuScriptImpl {
28public:
29    virtual void populateScript(Script *) = 0;
30
31    virtual void invokeFunction(uint32_t slot, const void *params, size_t paramLength);
32    virtual int invokeRoot();
33    virtual void invokeForEach(uint32_t slot,
34                       const Allocation * ain,
35                       Allocation * aout,
36                       const void * usr,
37                       uint32_t usrLen,
38                       const RsScriptCall *sc);
39    virtual void forEachKernelSetup(uint32_t slot, MTLaunchStruct *mtls);
40    virtual void invokeInit();
41    virtual void invokeFreeChildren();
42
43    virtual void setGlobalVar(uint32_t slot, const void *data, size_t dataLength);
44    virtual void setGlobalVarWithElemDims(uint32_t slot, const void *data, size_t dataLength,
45                                  const Element *e, const size_t *dims, size_t dimLength);
46    virtual void setGlobalBind(uint32_t slot, Allocation *data);
47    virtual void setGlobalObj(uint32_t slot, ObjectBase *data);
48
49    virtual ~RsdCpuScriptIntrinsic();
50    RsdCpuScriptIntrinsic(RsdCpuReferenceImpl *ctx, const Script *s, const Element *,
51                          RsScriptIntrinsicID iid);
52
53protected:
54    RsScriptIntrinsicID mID;
55    outer_foreach_t mRootPtr;
56    ObjectBaseRef<const Element> mElement;
57
58};
59
60
61
62}
63}
64
65#endif
66