rsDispatch.h revision 394e9a6e1b10229cf0465c50a679dda539c30876
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 ANDROID_RSDISPATCH_H
18#define ANDROID_RSDISPATCH_H
19
20#include "rsInternalDefines.h"
21#include "jni.h"
22
23typedef void (*SetNativeLibDirFnPtr)(RsContext con, const char *nativeLibDir, size_t length);
24typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va);
25typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uintptr_t *typeData, uint32_t typeDataSize);
26typedef void (*ElementGetNativeDataFnPtr)(RsContext, RsElement, uintptr_t *elemData, uint32_t elemDataSize);
27typedef void (*ElementGetSubElementsFnPtr)(RsContext, RsElement, uintptr_t *ids, const char **names, uint32_t *arraySizes, uint32_t dataSize);
28typedef RsDevice (*DeviceCreateFnPtr) ();
29typedef void (*DeviceDestroyFnPtr) (RsDevice dev);
30typedef void (*DeviceSetConfigFnPtr) (RsDevice dev, RsDeviceParam p, int32_t value);
31typedef RsContext (*ContextCreateFnPtr)(RsDevice vdev, uint32_t version, uint32_t sdkVersion, RsContextType ct, uint32_t flags);
32typedef void (*GetNameFnPtr)(RsContext, void * obj, const char **name);
33typedef RsClosure (*ClosureCreateFnPtr)(RsContext, RsScriptKernelID, RsAllocation, RsScriptFieldID*, size_t, uintptr_t*, size_t, int*, size_t, RsClosure*, size_t, RsScriptFieldID*, size_t);
34typedef RsClosure (*InvokeClosureCreateFnPtr)(RsContext, RsScriptInvokeID, const void*, const size_t, const RsScriptFieldID*, const size_t, const uintptr_t*, const size_t, const int*, const size_t);
35typedef void (*ClosureSetArgFnPtr)(RsContext, RsClosure, uint32_t, uintptr_t, size_t);
36typedef void (*ClosureSetGlobalFnPtr)(RsContext, RsClosure, RsScriptFieldID, uintptr_t, size_t);
37typedef void (*ContextDestroyFnPtr) (RsContext);
38typedef RsMessageToClientType (*ContextGetMessageFnPtr) (RsContext, void*, size_t, size_t*, size_t, uint32_t*, size_t);
39typedef RsMessageToClientType (*ContextPeekMessageFnPtr) (RsContext, size_t*, size_t, uint32_t*, size_t);
40typedef void (*ContextSendMessageFnPtr) (RsContext, uint32_t, const uint8_t*, size_t);
41typedef void (*ContextInitToClientFnPtr) (RsContext);
42typedef void (*ContextDeinitToClientFnPtr) (RsContext);
43typedef RsType (*TypeCreateFnPtr) (RsContext, RsElement, uint32_t, uint32_t, uint32_t, bool, bool, uint32_t);
44typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t);
45typedef RsAllocation (*AllocationCreateStridedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t, size_t);
46typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
47typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
48typedef RsNativeWindow (*AllocationGetSurfaceFnPtr) (RsContext, RsAllocation);
49typedef void (*AllocationSetSurfaceFnPtr) (RsContext, RsAllocation, RsNativeWindow);
50typedef void (*ContextFinishFnPtr) (RsContext);
51typedef void (*ContextDumpFnPtr) (RsContext, int32_t);
52typedef void (*ContextSetPriorityFnPtr) (RsContext, int32_t);
53typedef void (*AssignNameFnPtr) (RsContext, RsObjectBase, const char*, size_t);
54typedef void (*ObjDestroyFnPtr) (RsContext, RsAsyncVoidPtr);
55typedef RsElement (*ElementCreateFnPtr) (RsContext, RsDataType, RsDataKind, bool, uint32_t);
56typedef RsElement (*ElementCreate2FnPtr) (RsContext, const RsElement*, size_t, const char**, size_t, const size_t*, const uint32_t*, size_t);
57typedef void (*AllocationCopyToBitmapFnPtr) (RsContext, RsAllocation, void*, size_t);
58typedef void (*Allocation1DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const void*, size_t);
59typedef void (*Allocation1DElementDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, const void*, size_t, size_t);
60typedef void (*AllocationElementDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, const void*, size_t, size_t);
61typedef void (*Allocation2DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, const void*, size_t, size_t);
62typedef void (*Allocation3DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, const void*, size_t, size_t);
63typedef void (*AllocationGenerateMipmapsFnPtr) (RsContext, RsAllocation);
64typedef void (*AllocationReadFnPtr) (RsContext, RsAllocation, void*, size_t);
65typedef void (*Allocation1DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, void*, size_t);
66typedef void (*AllocationElementReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, void*, size_t, size_t);
67typedef void (*Allocation2DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, void*, size_t, size_t);
68typedef void (*Allocation3DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, void*, size_t, size_t);
69typedef void (*AllocationSyncAllFnPtr) (RsContext, RsAllocation, RsAllocationUsageType);
70typedef void (*AllocationResize1DFnPtr) (RsContext, RsAllocation, uint32_t);
71typedef void (*AllocationCopy2DRangeFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t);
72typedef void (*AllocationCopy3DRangeFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t);
73typedef RsSampler (*SamplerCreateFnPtr) (RsContext, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, float);
74typedef void (*ScriptBindAllocationFnPtr) (RsContext, RsScript, RsAllocation, uint32_t);
75typedef void (*ScriptSetTimeZoneFnPtr) (RsContext, RsScript, const char*, size_t);
76typedef void (*ScriptInvokeFnPtr) (RsContext, RsScript, uint32_t);
77typedef void (*ScriptInvokeVFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t);
78typedef void (*ScriptForEachFnPtr) (RsContext, RsScript, uint32_t, RsAllocation, RsAllocation, const void*, size_t, const RsScriptCall*, size_t);
79typedef void (*ScriptForEachMultiFnPtr) (RsContext, RsScript, uint32_t, RsAllocation*, size_t, RsAllocation, const void*, size_t, const RsScriptCall*, size_t);
80typedef void (*ScriptReduceFnPtr) (RsContext, RsScript, uint32_t, RsAllocation, RsAllocation, const RsScriptCall*, size_t);
81typedef void (*ScriptSetVarIFnPtr) (RsContext, RsScript, uint32_t, int);
82typedef void (*ScriptSetVarObjFnPtr) (RsContext, RsScript, uint32_t, RsObjectBase);
83typedef void (*ScriptSetVarJFnPtr) (RsContext, RsScript, uint32_t, int64_t);
84typedef void (*ScriptSetVarFFnPtr) (RsContext, RsScript, uint32_t, float);
85typedef void (*ScriptSetVarDFnPtr) (RsContext, RsScript, uint32_t, double);
86typedef void (*ScriptSetVarVFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t);
87typedef void (*ScriptGetVarVFnPtr) (RsContext, RsScript, uint32_t, void*, size_t);
88typedef void (*ScriptSetVarVEFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t, RsElement, const uint32_t*, size_t);
89typedef RsScript (*ScriptCCreateFnPtr) (RsContext, const char*, size_t, const char*, size_t, const char*, size_t);
90typedef RsScript (*ScriptIntrinsicCreateFnPtr) (RsContext, uint32_t id, RsElement);
91typedef RsScriptKernelID (*ScriptKernelIDCreateFnPtr) (RsContext, RsScript, int, int);
92typedef RsScriptInvokeID (*ScriptInvokeIDCreateFnPtr) (RsContext, RsScript, int);
93typedef RsScriptFieldID (*ScriptFieldIDCreateFnPtr) (RsContext, RsScript, int);
94typedef RsScriptGroup (*ScriptGroupCreateFnPtr) (RsContext, RsScriptKernelID*, size_t, RsScriptKernelID*, size_t, RsScriptKernelID*, size_t, RsScriptFieldID*, size_t, const RsType*, size_t);
95typedef RsScriptGroup2 (*ScriptGroup2CreateFnPtr)(RsContext, const char*, size_t, const char*, size_t, RsClosure*, size_t);
96typedef void (*ScriptGroupSetOutputFnPtr) (RsContext, RsScriptGroup, RsScriptKernelID, RsAllocation);
97typedef void (*ScriptGroupSetInputFnPtr) (RsContext, RsScriptGroup, RsScriptKernelID, RsAllocation);
98typedef void (*ScriptGroupExecuteFnPtr) (RsContext, RsScriptGroup);
99typedef void (*AllocationIoSendFnPtr) (RsContext, RsAllocation);
100typedef void (*AllocationIoReceiveFnPtr) (RsContext, RsAllocation);
101typedef void * (*AllocationGetPointerFnPtr) (RsContext, RsAllocation, uint32_t lod, RsAllocationCubemapFace face, uint32_t z, uint32_t array, size_t *stride, size_t stride_len);
102
103struct dispatchTable {
104    SetNativeLibDirFnPtr SetNativeLibDir;
105
106    // inserted by hand from rs.h
107    AllocationGetTypeFnPtr AllocationGetType;
108    TypeGetNativeDataFnPtr TypeGetNativeData;
109    ElementGetNativeDataFnPtr ElementGetNativeData;
110    ElementGetSubElementsFnPtr ElementGetSubElements;
111
112    DeviceCreateFnPtr DeviceCreate;
113    DeviceDestroyFnPtr DeviceDestroy;
114    DeviceSetConfigFnPtr DeviceSetConfig;
115    ContextCreateFnPtr ContextCreate;
116    GetNameFnPtr GetName;
117
118    // generated from rs.spec
119    ContextDestroyFnPtr ContextDestroy;
120    ContextGetMessageFnPtr ContextGetMessage;
121    ContextPeekMessageFnPtr ContextPeekMessage;
122    ContextSendMessageFnPtr ContextSendMessage;
123    ContextInitToClientFnPtr ContextInitToClient;
124    ContextDeinitToClientFnPtr ContextDeinitToClient;
125    TypeCreateFnPtr TypeCreate;
126    AllocationCreateTypedFnPtr AllocationCreateTyped;
127    AllocationCreateFromBitmapFnPtr AllocationCreateFromBitmap;
128    AllocationCubeCreateFromBitmapFnPtr AllocationCubeCreateFromBitmap;
129    AllocationGetSurfaceFnPtr AllocationGetSurface;
130    AllocationSetSurfaceFnPtr AllocationSetSurface;
131    ClosureCreateFnPtr ClosureCreate;
132    InvokeClosureCreateFnPtr InvokeClosureCreate;
133    ClosureSetArgFnPtr ClosureSetArg;
134    ClosureSetGlobalFnPtr ClosureSetGlobal;
135    ContextFinishFnPtr ContextFinish;
136    ContextDumpFnPtr ContextDump;
137    ContextSetPriorityFnPtr ContextSetPriority;
138    AssignNameFnPtr AssignName;
139    ObjDestroyFnPtr ObjDestroy;
140    ElementCreateFnPtr ElementCreate;
141    ElementCreate2FnPtr ElementCreate2;
142    AllocationCopyToBitmapFnPtr AllocationCopyToBitmap;
143    Allocation1DDataFnPtr Allocation1DData;
144    Allocation1DElementDataFnPtr Allocation1DElementData;
145    AllocationElementDataFnPtr AllocationElementData;
146    Allocation2DDataFnPtr Allocation2DData;
147    Allocation3DDataFnPtr Allocation3DData;
148    AllocationGenerateMipmapsFnPtr AllocationGenerateMipmaps;
149    AllocationReadFnPtr AllocationRead;
150    Allocation1DReadFnPtr Allocation1DRead;
151    AllocationElementReadFnPtr AllocationElementRead;
152    Allocation2DReadFnPtr Allocation2DRead;
153    Allocation3DReadFnPtr Allocation3DRead;
154    AllocationSyncAllFnPtr AllocationSyncAll;
155    AllocationResize1DFnPtr AllocationResize1D;
156    AllocationCopy2DRangeFnPtr AllocationCopy2DRange;
157    AllocationCopy3DRangeFnPtr AllocationCopy3DRange;
158    SamplerCreateFnPtr SamplerCreate;
159    ScriptBindAllocationFnPtr ScriptBindAllocation;
160    ScriptSetTimeZoneFnPtr ScriptSetTimeZone;
161    ScriptInvokeFnPtr ScriptInvoke;
162    ScriptInvokeVFnPtr ScriptInvokeV;
163    ScriptForEachFnPtr ScriptForEach;
164    ScriptForEachMultiFnPtr ScriptForEachMulti;
165    ScriptReduceFnPtr ScriptReduce;
166    ScriptSetVarIFnPtr ScriptSetVarI;
167    ScriptSetVarObjFnPtr ScriptSetVarObj;
168    ScriptSetVarJFnPtr ScriptSetVarJ;
169    ScriptSetVarFFnPtr ScriptSetVarF;
170    ScriptSetVarDFnPtr ScriptSetVarD;
171    ScriptSetVarVFnPtr ScriptSetVarV;
172    ScriptGetVarVFnPtr ScriptGetVarV;
173    ScriptSetVarVEFnPtr ScriptSetVarVE;
174    ScriptCCreateFnPtr ScriptCCreate;
175    ScriptIntrinsicCreateFnPtr ScriptIntrinsicCreate;
176    ScriptKernelIDCreateFnPtr ScriptKernelIDCreate;
177    ScriptInvokeIDCreateFnPtr ScriptInvokeIDCreate;
178    ScriptFieldIDCreateFnPtr ScriptFieldIDCreate;
179    ScriptGroupCreateFnPtr ScriptGroupCreate;
180    ScriptGroup2CreateFnPtr ScriptGroup2Create;
181    ScriptGroupSetOutputFnPtr ScriptGroupSetOutput;
182    ScriptGroupSetInputFnPtr ScriptGroupSetInput;
183    ScriptGroupExecuteFnPtr ScriptGroupExecute;
184    AllocationIoSendFnPtr AllocationIoSend;
185    AllocationIoReceiveFnPtr AllocationIoReceive;
186    AllocationGetPointerFnPtr AllocationGetPointer;
187    AllocationCreateStridedFnPtr AllocationCreateStrided;
188};
189
190bool loadSymbols(void* handle, dispatchTable& dispatchTab, int device_api = 0);
191
192//USAGE_IO for RS Support lib
193typedef void (*sAllocationSetSurfaceFnPtr) (JNIEnv *, jobject, RsContext, RsAllocation, RsNativeWindow, dispatchTable);
194struct ioSuppDT {
195    //USAGE_IO_OUTPUT
196    sAllocationSetSurfaceFnPtr sAllocationSetSurface;
197};
198
199bool loadIOSuppSyms(void* handleIO, ioSuppDT& ioDispatch);
200#endif
201