• Home
  • Raw
  • Download

Lines Matching refs:rsc

30 extern "C" void rsContextDestroy(RsContext rsc) __DEPRECATED_IN(31);
31 extern "C" void rsContextFinish(RsContext rsc) __DEPRECATED_IN(31);
32 extern "C" void rsContextDump(RsContext rsc, int32_t bits) __DEPRECATED_IN(31);
33 extern "C" void rsContextSetPriority(RsContext rsc, int32_t priority) __DEPRECATED_IN(31);
34 extern "C" void rsContextDestroyWorker(RsContext rsc) __DEPRECATED_IN(31);
35 extern "C" RsMessageToClientType rsContextGetMessage(RsContext rsc, void* data, size_t data_length,
39 extern "C" RsMessageToClientType rsContextPeekMessage(RsContext rsc, size_t* receiveLen,
42 extern "C" void rsContextSendMessage(RsContext rsc, uint32_t id, const uint8_t* data,
44 extern "C" void rsContextInitToClient(RsContext rsc) __DEPRECATED_IN(31);
45 extern "C" void rsContextDeinitToClient(RsContext rsc) __DEPRECATED_IN(31);
46 extern "C" void rsContextSetCacheDir(RsContext rsc, const char* cacheDir, size_t cacheDir_length)
52 extern "C" void rsAssignName(RsContext rsc, RsObjectBase obj, const char* name, size_t name_length)
55 extern "C" void rsObjDestroy(RsContext rsc, RsAsyncVoidPtr objPtr) __DEPRECATED_IN(31);
58 extern "C" RsElement rsElementCreate(RsContext rsc, RsDataType mType, RsDataKind mKind,
60 extern "C" RsElement rsElementCreate2(RsContext rsc, const RsElement* elements,
72 extern "C" RsType rsTypeCreate(RsContext rsc, RsElement e, uint32_t dimX, uint32_t dimY,
75 extern "C" RsType rsTypeCreate2(RsContext rsc, const RsTypeCreateParams* dat, size_t dat_length)
81 extern "C" RsAllocation rsAllocationCreateTyped(RsContext rsc, RsType vtype,
84 extern "C" RsAllocation rsAllocationCreateFromBitmap(RsContext rsc, RsType vtype,
88 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap(RsContext rsc, RsType vtype,
92 extern "C" RsAllocation rsAllocationAdapterCreate(RsContext rsc, RsType vtype,
95 extern "C" RsNativeWindow rsAllocationGetSurface(RsContext rsc, RsAllocation alloc)
97 extern "C" void rsAllocationSetupBufferQueue(RsContext rsc, RsAllocation alloc, uint32_t numAlloc)
99 extern "C" void rsAllocationShareBufferQueue(RsContext rsc, RsAllocation alloc1,
101 extern "C" void rsAllocationSetSurface(RsContext rsc, RsAllocation alloc, RsNativeWindow sur)
103 extern "C" void rsAllocationAdapterOffset(RsContext rsc, RsAllocation alloc,
106 extern "C" void rsAllocationCopyToBitmap(RsContext rsc, RsAllocation alloc, void* data,
108 extern "C" void* rsAllocationGetPointer(RsContext rsc, RsAllocation va, uint32_t lod,
111 extern "C" void rsAllocation1DData(RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
114 extern "C" void rsAllocation1DElementData(RsContext rsc, RsAllocation va, uint32_t x, uint32_t lod,
117 extern "C" void rsAllocationElementData(RsContext rsc, RsAllocation va, uint32_t x, uint32_t y,
120 extern "C" void rsAllocation2DData(RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
124 extern "C" void rsAllocation3DData(RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
128 extern "C" void rsAllocationGenerateMipmaps(RsContext rsc, RsAllocation va) __DEPRECATED_IN(31);
129 extern "C" void rsAllocationRead(RsContext rsc, RsAllocation va, void* data, size_t data_length)
131 extern "C" void rsAllocation1DRead(RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t lod,
134 extern "C" void rsAllocationElementRead(RsContext rsc, RsAllocation va, uint32_t x, uint32_t y,
137 extern "C" void rsAllocation2DRead(RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
141 extern "C" void rsAllocation3DRead(RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff,
145 extern "C" void rsAllocationSyncAll(RsContext rsc, RsAllocation va, RsAllocationUsageType src)
147 extern "C" void rsAllocationResize1D(RsContext rsc, RsAllocation va, uint32_t dimX)
149 extern "C" void rsAllocationCopy2DRange(RsContext rsc, RsAllocation dest, uint32_t destXoff,
154 extern "C" void rsAllocationCopy3DRange(RsContext rsc, RsAllocation dest, uint32_t destXoff,
159 extern "C" void rsAllocationIoSend(RsContext rsc, RsAllocation alloc) __DEPRECATED_IN(31);
160 extern "C" int64_t rsAllocationIoReceive(RsContext rsc, RsAllocation alloc) __DEPRECATED_IN(31);
163 extern "C" RsScriptGroup rsScriptGroupCreate(RsContext rsc, RsScriptKernelID* kernels,
169 extern "C" RsScriptGroup2 rsScriptGroup2Create(RsContext rsc, const char* name, size_t name_length,
173 extern "C" RsClosure rsClosureCreate(RsContext rsc, RsScriptKernelID kernelID,
180 extern "C" RsClosure rsInvokeClosureCreate(RsContext rsc, RsScriptInvokeID invokeID,
186 extern "C" void rsClosureSetArg(RsContext rsc, RsClosure closureID, uint32_t index, uintptr_t value,
188 extern "C" void rsClosureSetGlobal(RsContext rsc, RsClosure closureID, RsScriptFieldID fieldID,
190 extern "C" RsScriptKernelID rsScriptKernelIDCreate(RsContext rsc, RsScript sid, int slot, int sig)
192 extern "C" RsScriptInvokeID rsScriptInvokeIDCreate(RsContext rsc, RsScript s, uint32_t slot)
194 extern "C" RsScriptFieldID rsScriptFieldIDCreate(RsContext rsc, RsScript sid, int slot)
196 extern "C" void rsScriptGroupSetOutput(RsContext rsc, RsScriptGroup group, RsScriptKernelID kernel,
198 extern "C" void rsScriptGroupSetInput(RsContext rsc, RsScriptGroup group, RsScriptKernelID kernel,
200 extern "C" void rsScriptGroupExecute(RsContext rsc, RsScriptGroup group) __DEPRECATED_IN(31);
203 extern "C" RsSampler rsSamplerCreate(RsContext rsc, RsSamplerValue magFilter,
209 extern "C" RsScript rsScriptCCreate(RsContext rsc, const char* resName, size_t resName_length,
212 extern "C" RsScript rsScriptIntrinsicCreate(RsContext rsc, uint32_t id, RsElement eid)
214 extern "C" void rsScriptBindAllocation(RsContext rsc, RsScript vtm, RsAllocation va, uint32_t slot)
216 extern "C" void rsScriptSetTimeZone(RsContext rsc, RsScript s, const char* timeZone,
218 extern "C" void rsScriptInvoke(RsContext rsc, RsScript s, uint32_t slot) __DEPRECATED_IN(31);
219 extern "C" void rsScriptInvokeV(RsContext rsc, RsScript s, uint32_t slot, const void* data,
221 extern "C" void rsScriptForEach(RsContext rsc, RsScript s, uint32_t slot, RsAllocation ain,
224 extern "C" void rsScriptForEachMulti(RsContext rsc, RsScript s, uint32_t slot, RsAllocation* ains,
228 extern "C" void rsScriptReduce(RsContext rsc, RsScript s, uint32_t slot, RsAllocation* ains,
231 extern "C" void rsScriptSetVarI(RsContext rsc, RsScript s, uint32_t slot, int value)
233 extern "C" void rsScriptSetVarObj(RsContext rsc, RsScript s, uint32_t slot, RsObjectBase value)
235 extern "C" void rsScriptSetVarJ(RsContext rsc, RsScript s, uint32_t slot, int64_t value)
237 extern "C" void rsScriptSetVarF(RsContext rsc, RsScript s, uint32_t slot, float value)
239 extern "C" void rsScriptSetVarD(RsContext rsc, RsScript s, uint32_t slot, double value)
241 extern "C" void rsScriptSetVarV(RsContext rsc, RsScript s, uint32_t slot, const void* data,
243 extern "C" void rsScriptGetVarV(RsContext rsc, RsScript s, uint32_t slot, void* data,
245 extern "C" void rsScriptSetVarVE(RsContext rsc, RsScript s, uint32_t slot, const void* data,
252 extern "C" void rsContextSetSurface(RsContext rsc, uint32_t width, uint32_t height,
254 extern "C" void rsContextPause(RsContext rsc) __DEPRECATED_IN(31);
255 extern "C" void rsContextResume(RsContext rsc) __DEPRECATED_IN(31);
256 extern "C" void rsContextBindProgramStore(RsContext rsc, RsProgramStore pgm) __DEPRECATED_IN(31);
257 extern "C" void rsContextBindProgramFragment(RsContext rsc, RsProgramFragment pgm)
259 extern "C" void rsContextBindProgramVertex(RsContext rsc, RsProgramVertex pgm) __DEPRECATED_IN(31);
260 extern "C" void rsContextBindProgramRaster(RsContext rsc, RsProgramRaster pgm) __DEPRECATED_IN(31);
261 extern "C" void rsContextBindFont(RsContext rsc, RsFont pgm) __DEPRECATED_IN(31);
262 extern "C" void rsContextBindRootScript(RsContext rsc, RsScript sampler) __DEPRECATED_IN(31);
264 extern "C" RsProgramStore rsProgramStoreCreate(RsContext rsc, bool colorMaskR, bool colorMaskG,
269 extern "C" RsProgramRaster rsProgramRasterCreate(RsContext rsc, bool pointSprite, RsCullMode cull)
272 RsContext rsc, const char* shaderText, size_t shaderText_length, const char** textureNames,
276 RsContext rsc, const char* shaderText, size_t shaderText_length, const char** textureNames,
279 extern "C" RsFont rsFontCreateFromFile(RsContext rsc, const char* name, size_t name_length,
281 extern "C" RsFont rsFontCreateFromMemory(RsContext rsc, const char* name, size_t name_length,
284 extern "C" RsMesh rsMeshCreate(RsContext rsc, RsAllocation* vtx, size_t vtx_length,
287 extern "C" void rsProgramBindConstants(RsContext rsc, RsProgram vp, uint32_t slot,
289 extern "C" void rsProgramBindTexture(RsContext rsc, RsProgramFragment pf, uint32_t slot,
291 extern "C" void rsProgramBindSampler(RsContext rsc, RsProgramFragment pf, uint32_t slot,