-
Notifications
You must be signed in to change notification settings - Fork 0
/
rsScriptGroup.h
113 lines (91 loc) · 3.05 KB
/
rsScriptGroup.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ANDROID_RS_SCRIPT_GROUP_H
#define ANDROID_RS_SCRIPT_GROUP_H
#include "rsScriptGroupBase.h"
#include <vector>
// ---------------------------------------------------------------------------
namespace android {
namespace renderscript {
class Allocation;
class Context;
class ProgramVertex;
class ProgramFragment;
class ProgramRaster;
class ProgramStore;
class Script;
class ScriptFieldID;
class ScriptKernelID;
class Type;
class ScriptGroup : public ScriptGroupBase {
public:
virtual SG_API_Version getApiVersion() const { return SG_V1; }
virtual void execute(Context *rsc);
Vector<ObjectBaseRef<ScriptKernelID> > mKernels;
class Link {
public:
ObjectBaseRef<const ScriptKernelID> mSource;
ObjectBaseRef<const ScriptKernelID> mDstKernel;
ObjectBaseRef<const ScriptFieldID> mDstField;
ObjectBaseRef<const Type> mType;
ObjectBaseRef<Allocation> mAlloc;
Link();
~Link();
};
class Node {
public:
explicit Node(Script *);
Vector<const ScriptKernelID *> mKernels;
Vector<Link *> mOutputs;
Vector<Link *> mInputs;
bool mSeen;
int mOrder;
Script *mScript;
};
class IO {
public:
explicit IO(const ScriptKernelID *);
const ScriptKernelID *mKernel;
ObjectBaseRef<Allocation> mAlloc;
};
Vector<Link *> mLinks;
Vector<Node *> mNodes;
Vector<IO *> mInputs;
Vector<IO *> mOutputs;
static ScriptGroup * create(Context *rsc,
ScriptKernelID ** kernels, size_t kernelsSize,
ScriptKernelID ** src, size_t srcSize,
ScriptKernelID ** dstK, size_t dstKSize,
ScriptFieldID ** dstF, size_t dstFSize,
const Type ** type, size_t typeSize);
void setInput(Context *rsc, ScriptKernelID *kid, Allocation *a);
void setOutput(Context *rsc, ScriptKernelID *kid, Allocation *a);
protected:
virtual ~ScriptGroup();
bool mInitialized;
private:
bool calcOrderRecurse(Node *n, int depth);
bool calcOrder();
Node * findNode(Script *s) const;
// Check if input/output Allocations are correctly set for a ScriptGroup.
// Send any error back to the client (app). Called before the ScriptGroup
// executes. Skips the exeuction if validation fails.
bool validateInputAndOutput(Context *);
explicit ScriptGroup(Context *);
};
}
}
#endif