blob: 139ef52aa2bc294393a6e96f3f9488b80b36db38 [file] [log] [blame]
Tim Murraya4230962013-07-17 16:50:10 -07001/*
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 "rsDefines.h"
21
22typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va);
23typedef void (*TypeGetNativeDataFnPtr)(RsContext, RsType, uint32_t *typeData, uint32_t typeDataSize);
24typedef void (*ElementGetNativeDataFnPtr)(RsContext, RsElement, uint32_t *elemData, uint32_t elemDataSize);
25typedef void (*ElementGetSubElementsFnPtr)(RsContext, RsElement, uint32_t *ids, const char **names, uint32_t *arraySizes, uint32_t dataSize);
26typedef RsDevice (*DeviceCreateFnPtr) ();
27typedef void (*DeviceDestroyFnPtr) (RsDevice dev);
28typedef void (*DeviceSetConfigFnPtr) (RsDevice dev, RsDeviceParam p, int32_t value);
29typedef RsContext (*ContextCreateFnPtr)(RsDevice vdev, uint32_t version, uint32_t sdkVersion, RsContextType ct, bool forceCpu, bool synchronous);
Tim Murray4a92d122013-07-22 10:56:18 -070030typedef void (*GetNameFnPtr)(RsContext, void * obj, const char **name);
31
Tim Murraya4230962013-07-17 16:50:10 -070032typedef void (*ContextDestroyFnPtr) (RsContext);
33typedef RsMessageToClientType (*ContextGetMessageFnPtr) (RsContext, void*, size_t, size_t*, size_t, uint32_t*, size_t);
34typedef RsMessageToClientType (*ContextPeekMessageFnPtr) (RsContext, size_t*, size_t, uint32_t*, size_t);
35typedef void (*ContextSendMessageFnPtr) (RsContext, uint32_t, const uint8_t*, size_t);
36typedef void (*ContextInitToClientFnPtr) (RsContext);
37typedef void (*ContextDeinitToClientFnPtr) (RsContext);
38typedef RsType (*TypeCreateFnPtr) (RsContext, RsElement, uint32_t, uint32_t, uint32_t, bool, bool, uint32_t);
39typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t);
40typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
41typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t);
42typedef RsNativeWindow (*AllocationGetSurfaceFnPtr) (RsContext, RsAllocation);
43typedef void (*AllocationSetSurfaceFnPtr) (RsContext, RsAllocation, RsNativeWindow);
44typedef void (*ContextFinishFnPtr) (RsContext);
45typedef void (*ContextDumpFnPtr) (RsContext, int32_t);
46typedef void (*ContextSetPriorityFnPtr) (RsContext, int32_t);
47typedef void (*AssignNameFnPtr) (RsContext, RsObjectBase, const char*, size_t);
48typedef void (*ObjDestroyFnPtr) (RsContext, RsAsyncVoidPtr);
49typedef RsElement (*ElementCreateFnPtr) (RsContext, RsDataType, RsDataKind, bool, uint32_t);
50typedef RsElement (*ElementCreate2FnPtr) (RsContext, const RsElement*, size_t, const char**, size_t, const size_t*, const uint32_t*, size_t);
51typedef void (*AllocationCopyToBitmapFnPtr) (RsContext, RsAllocation, void*, size_t);
52typedef void (*Allocation1DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const void*, size_t);
53typedef void (*Allocation1DElementDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, const void*, size_t, size_t);
54typedef void (*Allocation2DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, const void*, size_t, size_t);
55typedef void (*Allocation3DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, const void*, size_t, size_t);
56typedef void (*AllocationGenerateMipmapsFnPtr) (RsContext, RsAllocation);
57typedef void (*AllocationReadFnPtr) (RsContext, RsAllocation, void*, size_t);
58typedef void (*Allocation1DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, void*, size_t);
59typedef void (*Allocation2DReadFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, void*, size_t, size_t);
60typedef void (*AllocationSyncAllFnPtr) (RsContext, RsAllocation, RsAllocationUsageType);
61typedef void (*AllocationResize1DFnPtr) (RsContext, RsAllocation, uint32_t);
62typedef 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);
63typedef 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);
64typedef RsSampler (*SamplerCreateFnPtr) (RsContext, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, RsSamplerValue, float);
65typedef void (*ScriptBindAllocationFnPtr) (RsContext, RsScript, RsAllocation, uint32_t);
66typedef void (*ScriptSetTimeZoneFnPtr) (RsContext, RsScript, const char*, size_t);
67typedef void (*ScriptInvokeFnPtr) (RsContext, RsScript, uint32_t);
68typedef void (*ScriptInvokeVFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t);
69typedef void (*ScriptForEachFnPtr) (RsContext, RsScript, uint32_t, RsAllocation, RsAllocation, const void*, size_t, const RsScriptCall*, size_t);
70typedef void (*ScriptSetVarIFnPtr) (RsContext, RsScript, uint32_t, int);
71typedef void (*ScriptSetVarObjFnPtr) (RsContext, RsScript, uint32_t, RsObjectBase);
72typedef void (*ScriptSetVarJFnPtr) (RsContext, RsScript, uint32_t, int64_t);
73typedef void (*ScriptSetVarFFnPtr) (RsContext, RsScript, uint32_t, float);
74typedef void (*ScriptSetVarDFnPtr) (RsContext, RsScript, uint32_t, double);
75typedef void (*ScriptSetVarVFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t);
76typedef void (*ScriptGetVarVFnPtr) (RsContext, RsScript, uint32_t, void*, size_t);
77typedef void (*ScriptSetVarVEFnPtr) (RsContext, RsScript, uint32_t, const void*, size_t, RsElement, const size_t*, size_t);
78typedef RsScript (*ScriptCCreateFnPtr) (RsContext, const char*, size_t, const char*, size_t, const char*, size_t);
79typedef RsScript (*ScriptIntrinsicCreateFnPtr) (RsContext, uint32_t id, RsElement);
80typedef RsScriptKernelID (*ScriptKernelIDCreateFnPtr) (RsContext, RsScript, int, int);
81typedef RsScriptFieldID (*ScriptFieldIDCreateFnPtr) (RsContext, RsScript, int);
82typedef RsScriptGroup (*ScriptGroupCreateFnPtr) (RsContext, RsScriptKernelID*, size_t, RsScriptKernelID*, size_t, RsScriptKernelID*, size_t, RsScriptFieldID*, size_t, const RsType*, size_t);
83typedef void (*ScriptGroupSetOutputFnPtr) (RsContext, RsScriptGroup, RsScriptKernelID, RsAllocation);
84typedef void (*ScriptGroupSetInputFnPtr) (RsContext, RsScriptGroup, RsScriptKernelID, RsAllocation);
85typedef void (*ScriptGroupExecuteFnPtr) (RsContext, RsScriptGroup);
86typedef void (*AllocationIoSendFnPtr) (RsContext, RsAllocation);
87typedef void (*AllocationIoReceiveFnPtr) (RsContext, RsAllocation);
88
89typedef struct {
90 // inserted by hand from rs.h
91 AllocationGetTypeFnPtr AllocationGetType;
92 TypeGetNativeDataFnPtr TypeGetNativeData;
93 ElementGetNativeDataFnPtr ElementGetNativeData;
94 ElementGetSubElementsFnPtr ElementGetSubElements;
95
Tim Murraya4230962013-07-17 16:50:10 -070096 DeviceCreateFnPtr DeviceCreate;
97 DeviceDestroyFnPtr DeviceDestroy;
98 DeviceSetConfigFnPtr DeviceSetConfig;
99 ContextCreateFnPtr ContextCreate;
Tim Murray4a92d122013-07-22 10:56:18 -0700100 GetNameFnPtr GetName;
Tim Murraya4230962013-07-17 16:50:10 -0700101
102 // generated from rs.spec
103 ContextDestroyFnPtr ContextDestroy;
104 ContextGetMessageFnPtr ContextGetMessage;
105 ContextPeekMessageFnPtr ContextPeekMessage;
106 ContextSendMessageFnPtr ContextSendMessage;
107 ContextInitToClientFnPtr ContextInitToClient;
108 ContextDeinitToClientFnPtr ContextDeinitToClient;
109 TypeCreateFnPtr TypeCreate;
110 AllocationCreateTypedFnPtr AllocationCreateTyped;
111 AllocationCreateFromBitmapFnPtr AllocationCreateFromBitmap;
112 AllocationCubeCreateFromBitmapFnPtr AllocationCubeCreateFromBitmap;
113 AllocationGetSurfaceFnPtr AllocationGetSurface;
114 AllocationSetSurfaceFnPtr AllocationSetSurface;
115 ContextFinishFnPtr ContextFinish;
116 ContextDumpFnPtr ContextDump;
117 ContextSetPriorityFnPtr ContextSetPriority;
118 AssignNameFnPtr AssignName;
119 ObjDestroyFnPtr ObjDestroy;
120 ElementCreateFnPtr ElementCreate;
121 ElementCreate2FnPtr ElementCreate2;
122 AllocationCopyToBitmapFnPtr AllocationCopyToBitmap;
123 Allocation1DDataFnPtr Allocation1DData;
124 Allocation1DElementDataFnPtr Allocation1DElementData;
125 Allocation2DDataFnPtr Allocation2DData;
126 Allocation3DDataFnPtr Allocation3DData;
127 AllocationGenerateMipmapsFnPtr AllocationGenerateMipmaps;
128 AllocationReadFnPtr AllocationRead;
129 Allocation1DReadFnPtr Allocation1DRead;
130 Allocation2DReadFnPtr Allocation2DRead;
131 AllocationSyncAllFnPtr AllocationSyncAll;
132 AllocationResize1DFnPtr AllocationResize1D;
133 AllocationCopy2DRangeFnPtr AllocationCopy2DRange;
134 AllocationCopy3DRangeFnPtr AllocationCopy3DRange;
135 SamplerCreateFnPtr SamplerCreate;
136 ScriptBindAllocationFnPtr ScriptBindAllocation;
137 ScriptSetTimeZoneFnPtr ScriptSetTimeZone;
138 ScriptInvokeFnPtr ScriptInvoke;
139 ScriptInvokeVFnPtr ScriptInvokeV;
140 ScriptForEachFnPtr ScriptForEach;
141 ScriptSetVarIFnPtr ScriptSetVarI;
142 ScriptSetVarObjFnPtr ScriptSetVarObj;
143 ScriptSetVarJFnPtr ScriptSetVarJ;
144 ScriptSetVarFFnPtr ScriptSetVarF;
145 ScriptSetVarDFnPtr ScriptSetVarD;
146 ScriptSetVarVFnPtr ScriptSetVarV;
147 ScriptGetVarVFnPtr ScriptGetVarV;
148 ScriptSetVarVEFnPtr ScriptSetVarVE;
149 ScriptCCreateFnPtr ScriptCCreate;
150 ScriptIntrinsicCreateFnPtr ScriptIntrinsicCreate;
151 ScriptKernelIDCreateFnPtr ScriptKernelIDCreate;
152 ScriptFieldIDCreateFnPtr ScriptFieldIDCreate;
153 ScriptGroupCreateFnPtr ScriptGroupCreate;
154 ScriptGroupSetOutputFnPtr ScriptGroupSetOutput;
155 ScriptGroupSetInputFnPtr ScriptGroupSetInput;
156 ScriptGroupExecuteFnPtr ScriptGroupExecute;
157 AllocationIoSendFnPtr AllocationIoSend;
158 AllocationIoReceiveFnPtr AllocationIoReceive;
159} dispatchTable;
160
161#endif