/frameworks/rs/cpp/ |
rsDispatch.h | 22 typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va); 39 typedef RsAllocation (*AllocationCreateTypedFnPtr) (RsContext, RsType, RsAllocationMipmapControl, uint32_t, uintptr_t); 40 typedef RsAllocation (*AllocationCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t); 41 typedef RsAllocation (*AllocationCubeCreateFromBitmapFnPtr) (RsContext, RsType, RsAllocationMipmapControl, const void*, size_t, uint32_t); 42 typedef RsNativeWindow (*AllocationGetSurfaceFnPtr) (RsContext, RsAllocation); 43 typedef void (*AllocationSetSurfaceFnPtr) (RsContext, RsAllocation, RsNativeWindow); 51 typedef void (*AllocationCopyToBitmapFnPtr) (RsContext, RsAllocation, void*, size_t); 52 typedef void (*Allocation1DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, const void*, size_t); 53 typedef void (*Allocation1DElementDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, const void*, size_t, size_t); 54 typedef void (*Allocation2DDataFnPtr) (RsContext, RsAllocation, uint32_t, uint32_t, uint32_t, RsAllocationCubemapFace, uint32_t, uint32_t, const void*, size_t, s (…) [all...] |
/frameworks/rs/ |
rs.spec | 52 ret RsAllocation 61 ret RsAllocation 70 ret RsAllocation 74 param RsAllocation alloc 80 param RsAllocation alloc 129 param RsAllocation alloc 135 param RsAllocation va 143 param RsAllocation va 151 param RsAllocation va 163 param RsAllocation v [all...] |
rsEnv.h | 6 typedef void * RsAllocation;
|
rsg.spec | 25 param RsAllocation constants 32 param RsAllocation a 73 param RsAllocation *vtx 74 param RsAllocation *idx 82 param RsAllocation vertex 83 param RsAllocation loops
|
rs.h | 37 void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); 38 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va, 46 const void* rsaAllocationGetType(RsContext con, RsAllocation va);
|
rsPath.cpp | 74 RsAllocation vtx, RsAllocation loops, float quality) {
|
rsAllocation.cpp | 18 #include "rsAllocation.h" 523 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) { 529 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) { 534 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) { 541 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, 547 void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face, 553 void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod, 559 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, 565 void rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, 572 void rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) [all...] |
rsAdapter.cpp | 60 void rsi_Adapter1DBindAllocation(Context *rsc, RsAdapter1D va, RsAllocation valloc) { 134 void rsi_Adapter2DBindAllocation(Context *rsc, RsAdapter2D va, RsAllocation valloc) {
|
rsScript.cpp | 155 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) { 181 RsAllocation vain, RsAllocation vaout,
|
rsMesh.cpp | 270 RsAllocation * vtx, size_t vtxCount, 271 RsAllocation * idx, size_t idxCount, 302 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) { 312 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idxDataCount) {
|
rsProgram.cpp | 213 void rsi_ProgramBindConstants(Context *rsc, RsProgram vp, uint32_t slot, RsAllocation constants) { 218 void rsi_ProgramBindTexture(Context *rsc, RsProgram vpf, uint32_t slot, RsAllocation a) {
|
rsScriptGroup.cpp | 368 RsAllocation alloc) { 375 RsAllocation alloc) {
|
rsDefines.h | 34 typedef void * RsAllocation;
|
/frameworks/support/v8/renderscript/jni/ |
android_renderscript_RenderScript.cpp | 330 LOG_API("nAllocationSyncAll, con(%p), a(%p), bits(0x%08x)", con, (RsAllocation)a, bits); 331 rsAllocationSyncAll(con, (RsAllocation)a, (RsAllocationUsageType)bits); 337 LOG_API("nAllocationGenerateMipmaps, con(%p), a(%p)", con, (RsAllocation)alloc); 338 rsAllocationGenerateMipmaps(con, (RsAllocation)alloc); 413 rsAllocation2DData(con, (RsAllocation)alloc, 0, 0, 431 rsAllocationCopyToBitmap(con, (RsAllocation)alloc, pixels, GetBitmapSize(_env, jbitmap)); 442 LOG_API("nAllocation1DData_i, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes); 444 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes); 452 LOG_API("nAllocation1DData_s, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes); 454 rsAllocation1DData(con, (RsAllocation)alloc, offset, lod, count, ptr, sizeBytes) [all...] |
/frameworks/base/graphics/jni/ |
android_renderscript_RenderScript.cpp | 468 LOG_API("nAllocationSyncAll, con(%p), a(%p), bits(0x%08x)", con, (RsAllocation)a, bits); 469 rsAllocationSyncAll(con, (RsAllocation)a, (RsAllocationUsageType)bits); 475 LOG_API("nAllocationGetSurface, con(%p), a(%p)", con, (RsAllocation)a); 477 IGraphicBufferProducer *v = (IGraphicBufferProducer *)rsAllocationGetSurface(con, (RsAllocation)a); 486 nAllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur) 500 nAllocationIoSend(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc) 507 nAllocationIoReceive(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc) 517 LOG_API("nAllocationGenerateMipmaps, con(%p), a(%p)", con, (RsAllocation)alloc); 518 rsAllocationGenerateMipmaps(con, (RsAllocation)alloc); 580 rsAllocation2DData(con, (RsAllocation)alloc, 0, 0 [all...] |