blob: b0e10c9648a64c04f6424a4fae8ced810ab3f36c [file] [log] [blame]
Jason Samsbad80742011-03-16 16:29:28 -07001/*
Stephen Hines2980f072012-04-09 18:26:29 -07002 * Copyright (C) 2011-2012 The Android Open Source Project
Jason Samsbad80742011-03-16 16:29:28 -07003 *
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 RS_HAL_H
18#define RS_HAL_H
19
Jason Sams3715b002012-02-16 16:07:49 -080020#include <rsDefines.h>
Jason Samsbad80742011-03-16 16:29:28 -070021
Jason Sams7ac2a4d2012-02-15 12:04:24 -080022struct ANativeWindow;
23
Jason Samsbad80742011-03-16 16:29:28 -070024namespace android {
25namespace renderscript {
26
27class Context;
28class ObjectBase;
29class Element;
30class Type;
31class Allocation;
32class Script;
Jason Samsdbe66d62012-09-17 13:54:41 -070033class ScriptKernelID;
34class ScriptFieldID;
35class ScriptMethodID;
Jason Samsbad80742011-03-16 16:29:28 -070036class ScriptC;
Jason Samsdbe66d62012-09-17 13:54:41 -070037class ScriptGroup;
Jason Sams9e0afb52011-10-31 13:23:43 -070038class Path;
Alex Sakhartchouk7f126c72011-05-05 16:56:27 -070039class Program;
Jason Sams8feea4e2011-03-18 15:03:25 -070040class ProgramStore;
Jason Sams721acc42011-04-06 11:23:54 -070041class ProgramRaster;
Alex Sakhartchouka04e30d2011-04-29 16:49:08 -070042class ProgramVertex;
43class ProgramFragment;
44class Mesh;
Alex Sakhartchouk7f126c72011-05-05 16:56:27 -070045class Sampler;
Alex Sakhartchoukda6d34a2011-05-13 14:53:34 -070046class FBOCache;
Jason Samsbad80742011-03-16 16:29:28 -070047
Jason Samsbad80742011-03-16 16:29:28 -070048typedef void *(*RsHalSymbolLookupFunc)(void *usrptr, char const *symbolName);
49
Jason Sams451cf2e2011-08-17 13:46:46 -070050typedef struct {
51 const void *in;
52 void *out;
53 const void *usr;
Jason Sams8eaba4f2012-08-14 14:38:05 -070054 size_t usrLen;
Jason Sams451cf2e2011-08-17 13:46:46 -070055 uint32_t x;
56 uint32_t y;
57 uint32_t z;
58 uint32_t lod;
59 RsAllocationCubemapFace face;
60 uint32_t ar[16];
Jason Sams8eaba4f2012-08-14 14:38:05 -070061
62 uint32_t dimX;
63 uint32_t dimY;
64 uint32_t dimZ;
65 uint32_t dimArray;
66
67 const uint8_t *ptrIn;
68 uint8_t *ptrOut;
69 uint32_t eStrideIn;
70 uint32_t eStrideOut;
71 uint32_t yStrideIn;
72 uint32_t yStrideOut;
Jason Samscf9ea9f2012-09-23 17:00:54 -070073 uint32_t slot;
Jason Sams451cf2e2011-08-17 13:46:46 -070074} RsForEachStubParamStruct;
75
Jason Samsbad80742011-03-16 16:29:28 -070076/**
77 * Script management functions
78 */
79typedef struct {
Jason Sams4b3de472011-04-06 17:52:23 -070080 bool (*initGraphics)(const Context *);
81 void (*shutdownGraphics)(const Context *);
Alex Sakhartchouk7257c7e2011-05-17 12:32:47 -070082 bool (*setSurface)(const Context *, uint32_t w, uint32_t h, RsNativeWindow);
Jason Sams4b3de472011-04-06 17:52:23 -070083 void (*swap)(const Context *);
84
Jason Samscdfdb8f2011-03-17 16:12:47 -070085 void (*shutdownDriver)(Context *);
Jason Samsbad80742011-03-16 16:29:28 -070086 void (*getVersion)(unsigned int *major, unsigned int *minor);
Jason Samscdfdb8f2011-03-17 16:12:47 -070087 void (*setPriority)(const Context *, int32_t priority);
Jason Samsbad80742011-03-16 16:29:28 -070088
89
90
91 struct {
Jason Sams8feea4e2011-03-18 15:03:25 -070092 bool (*init)(const Context *rsc, ScriptC *s,
93 char const *resName,
94 char const *cacheDir,
95 uint8_t const *bitcode,
96 size_t bitcodeSize,
Jason Sams87fe59a2011-04-20 15:09:01 -070097 uint32_t flags);
Jason Sams8eaba4f2012-08-14 14:38:05 -070098 bool (*initIntrinsic)(const Context *rsc, Script *s,
Stephen Hines41d6c762012-08-21 17:07:38 -070099 RsScriptIntrinsicID iid,
Jason Sams8eaba4f2012-08-14 14:38:05 -0700100 Element *e);
Jason Samsbad80742011-03-16 16:29:28 -0700101
Jason Samscdfdb8f2011-03-17 16:12:47 -0700102 void (*invokeFunction)(const Context *rsc, Script *s,
Jason Samsbad80742011-03-16 16:29:28 -0700103 uint32_t slot,
104 const void *params,
105 size_t paramLength);
Jason Samscdfdb8f2011-03-17 16:12:47 -0700106 int (*invokeRoot)(const Context *rsc, Script *s);
107 void (*invokeForEach)(const Context *rsc,
108 Script *s,
Jason Sams35e429e2011-07-13 11:26:26 -0700109 uint32_t slot,
Jason Samscdfdb8f2011-03-17 16:12:47 -0700110 const Allocation * ain,
111 Allocation * aout,
112 const void * usr,
113 uint32_t usrLen,
114 const RsScriptCall *sc);
115 void (*invokeInit)(const Context *rsc, Script *s);
Stephen Hines4ee16ff2011-08-31 17:41:39 -0700116 void (*invokeFreeChildren)(const Context *rsc, Script *s);
Jason Samsbad80742011-03-16 16:29:28 -0700117
118 void (*setGlobalVar)(const Context *rsc, const Script *s,
119 uint32_t slot,
120 void *data,
121 size_t dataLength);
Stephen Hines2980f072012-04-09 18:26:29 -0700122 void (*setGlobalVarWithElemDims)(const Context *rsc, const Script *s,
123 uint32_t slot,
124 void *data,
125 size_t dataLength,
126 const Element *e,
127 const size_t *dims,
128 size_t dimLength);
Jason Samsbad80742011-03-16 16:29:28 -0700129 void (*setGlobalBind)(const Context *rsc, const Script *s,
130 uint32_t slot,
Jason Sams807fdc42012-07-25 17:55:39 -0700131 Allocation *data);
Jason Samsbad80742011-03-16 16:29:28 -0700132 void (*setGlobalObj)(const Context *rsc, const Script *s,
133 uint32_t slot,
134 ObjectBase *data);
135
136 void (*destroy)(const Context *rsc, Script *s);
137 } script;
138
Jason Sams8feea4e2011-03-18 15:03:25 -0700139 struct {
Jason Samseb4fe182011-05-26 16:33:01 -0700140 bool (*init)(const Context *rsc, Allocation *alloc, bool forceZero);
141 void (*destroy)(const Context *rsc, Allocation *alloc);
142
143 void (*resize)(const Context *rsc, const Allocation *alloc, const Type *newType,
144 bool zeroNew);
145 void (*syncAll)(const Context *rsc, const Allocation *alloc, RsAllocationUsageType src);
146 void (*markDirty)(const Context *rsc, const Allocation *alloc);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800147
Jason Sams41e373d2012-01-13 14:01:20 -0800148 int32_t (*initSurfaceTexture)(const Context *rsc, const Allocation *alloc);
Jason Sams7ac2a4d2012-02-15 12:04:24 -0800149 void (*setSurfaceTexture)(const Context *rsc, Allocation *alloc, ANativeWindow *sur);
150 void (*ioSend)(const Context *rsc, Allocation *alloc);
151 void (*ioReceive)(const Context *rsc, Allocation *alloc);
Jason Samseb4fe182011-05-26 16:33:01 -0700152
153 void (*data1D)(const Context *rsc, const Allocation *alloc,
154 uint32_t xoff, uint32_t lod, uint32_t count,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800155 const void *data, size_t sizeBytes);
Jason Samseb4fe182011-05-26 16:33:01 -0700156 void (*data2D)(const Context *rsc, const Allocation *alloc,
157 uint32_t xoff, uint32_t yoff, uint32_t lod,
158 RsAllocationCubemapFace face, uint32_t w, uint32_t h,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800159 const void *data, size_t sizeBytes);
Jason Samseb4fe182011-05-26 16:33:01 -0700160 void (*data3D)(const Context *rsc, const Allocation *alloc,
161 uint32_t xoff, uint32_t yoff, uint32_t zoff,
162 uint32_t lod, RsAllocationCubemapFace face,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800163 uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes);
Jason Samseb4fe182011-05-26 16:33:01 -0700164
Jason Sams807fdc42012-07-25 17:55:39 -0700165 void (*read1D)(const Context *rsc, const Allocation *alloc,
166 uint32_t xoff, uint32_t lod, uint32_t count,
167 void *data, size_t sizeBytes);
168 void (*read2D)(const Context *rsc, const Allocation *alloc,
169 uint32_t xoff, uint32_t yoff, uint32_t lod,
170 RsAllocationCubemapFace face, uint32_t w, uint32_t h,
171 void *data, size_t sizeBytes);
172 void (*read3D)(const Context *rsc, const Allocation *alloc,
173 uint32_t xoff, uint32_t yoff, uint32_t zoff,
174 uint32_t lod, RsAllocationCubemapFace face,
175 uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes);
176
177 // Lock and unlock make a 1D region of memory available to the CPU
178 // for direct access by pointer. Once unlock is called control is
179 // returned to the SOC driver.
180 void * (*lock1D)(const Context *rsc, const Allocation *alloc);
181 void (*unlock1D)(const Context *rsc, const Allocation *alloc);
182
Alex Sakhartchouk74a82792011-06-14 11:13:19 -0700183 // Allocation to allocation copies
184 void (*allocData1D)(const Context *rsc,
185 const Allocation *dstAlloc,
186 uint32_t dstXoff, uint32_t dstLod, uint32_t count,
187 const Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcLod);
188 void (*allocData2D)(const Context *rsc,
189 const Allocation *dstAlloc,
190 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstLod,
191 RsAllocationCubemapFace dstFace, uint32_t w, uint32_t h,
192 const Allocation *srcAlloc,
193 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcLod,
194 RsAllocationCubemapFace srcFace);
195 void (*allocData3D)(const Context *rsc,
196 const Allocation *dstAlloc,
197 uint32_t dstXoff, uint32_t dstYoff, uint32_t dstZoff,
198 uint32_t dstLod, RsAllocationCubemapFace dstFace,
199 uint32_t w, uint32_t h, uint32_t d,
200 const Allocation *srcAlloc,
201 uint32_t srcXoff, uint32_t srcYoff, uint32_t srcZoff,
202 uint32_t srcLod, RsAllocationCubemapFace srcFace);
203
Jason Samseb4fe182011-05-26 16:33:01 -0700204 void (*elementData1D)(const Context *rsc, const Allocation *alloc, uint32_t x,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800205 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Samseb4fe182011-05-26 16:33:01 -0700206 void (*elementData2D)(const Context *rsc, const Allocation *alloc, uint32_t x, uint32_t y,
Alex Sakhartchoukc794cd52012-02-13 11:57:32 -0800207 const void *data, uint32_t elementOff, size_t sizeBytes);
Jason Samseb4fe182011-05-26 16:33:01 -0700208
Jason Sams61a4bb72012-07-25 19:33:43 -0700209 void (*generateMipmaps)(const Context *rsc, const Allocation *alloc);
Jason Samseb4fe182011-05-26 16:33:01 -0700210 } allocation;
211
212 struct {
Jason Sams8feea4e2011-03-18 15:03:25 -0700213 bool (*init)(const Context *rsc, const ProgramStore *ps);
214 void (*setActive)(const Context *rsc, const ProgramStore *ps);
215 void (*destroy)(const Context *rsc, const ProgramStore *ps);
216 } store;
217
Jason Sams721acc42011-04-06 11:23:54 -0700218 struct {
219 bool (*init)(const Context *rsc, const ProgramRaster *ps);
220 void (*setActive)(const Context *rsc, const ProgramRaster *ps);
221 void (*destroy)(const Context *rsc, const ProgramRaster *ps);
222 } raster;
Jason Sams8feea4e2011-03-18 15:03:25 -0700223
Alex Sakhartchouka04e30d2011-04-29 16:49:08 -0700224 struct {
225 bool (*init)(const Context *rsc, const ProgramVertex *pv,
Alex Sakhartchouk748eb072012-02-15 16:21:46 -0800226 const char* shader, size_t shaderLen,
227 const char** textureNames, size_t textureNamesCount,
228 const size_t *textureNamesLength);
Alex Sakhartchouka04e30d2011-04-29 16:49:08 -0700229 void (*setActive)(const Context *rsc, const ProgramVertex *pv);
230 void (*destroy)(const Context *rsc, const ProgramVertex *pv);
231 } vertex;
232
233 struct {
234 bool (*init)(const Context *rsc, const ProgramFragment *pf,
Alex Sakhartchouk748eb072012-02-15 16:21:46 -0800235 const char* shader, size_t shaderLen,
236 const char** textureNames, size_t textureNamesCount,
237 const size_t *textureNamesLength);
Alex Sakhartchouka04e30d2011-04-29 16:49:08 -0700238 void (*setActive)(const Context *rsc, const ProgramFragment *pf);
239 void (*destroy)(const Context *rsc, const ProgramFragment *pf);
240 } fragment;
241
242 struct {
243 bool (*init)(const Context *rsc, const Mesh *m);
244 void (*draw)(const Context *rsc, const Mesh *m, uint32_t primIndex, uint32_t start, uint32_t len);
245 void (*destroy)(const Context *rsc, const Mesh *m);
246 } mesh;
Jason Samsbad80742011-03-16 16:29:28 -0700247
Alex Sakhartchouk7f126c72011-05-05 16:56:27 -0700248 struct {
Jason Sams9e0afb52011-10-31 13:23:43 -0700249 bool (*initStatic)(const Context *rsc, const Path *m, const Allocation *vtx, const Allocation *loops);
250 bool (*initDynamic)(const Context *rsc, const Path *m);
251 void (*draw)(const Context *rsc, const Path *m);
252 void (*destroy)(const Context *rsc, const Path *m);
253 } path;
254
255 struct {
Alex Sakhartchouk7f126c72011-05-05 16:56:27 -0700256 bool (*init)(const Context *rsc, const Sampler *m);
257 void (*destroy)(const Context *rsc, const Sampler *m);
258 } sampler;
259
Alex Sakhartchoukda6d34a2011-05-13 14:53:34 -0700260 struct {
261 bool (*init)(const Context *rsc, const FBOCache *fb);
262 void (*setActive)(const Context *rsc, const FBOCache *fb);
263 void (*destroy)(const Context *rsc, const FBOCache *fb);
264 } framebuffer;
265
Jason Samsdbe66d62012-09-17 13:54:41 -0700266 struct {
267 bool (*init)(const Context *rsc, const ScriptGroup *sg);
268 void (*setInput)(const Context *rsc, const ScriptGroup *sg,
269 const ScriptKernelID *kid, Allocation *);
270 void (*setOutput)(const Context *rsc, const ScriptGroup *sg,
271 const ScriptKernelID *kid, Allocation *);
272 void (*execute)(const Context *rsc, const ScriptGroup *sg);
273 void (*destroy)(const Context *rsc, const ScriptGroup *sg);
274 } scriptgroup;
275
Jason Samsbad80742011-03-16 16:29:28 -0700276} RsdHalFunctions;
277
Jason Samsbad80742011-03-16 16:29:28 -0700278
279}
280}
281
Stephen Hines414a4612012-09-05 18:05:08 -0700282#ifdef __cplusplus
283extern "C" {
284#endif
Jason Samsbad80742011-03-16 16:29:28 -0700285
Stephen Hines414a4612012-09-05 18:05:08 -0700286bool rsdHalInit(RsContext, uint32_t version_major, uint32_t version_minor);
287
288#ifdef __cplusplus
289}
290#endif
Jason Samsbad80742011-03-16 16:29:28 -0700291
292#endif
293