Searched defs:mipmaps (Results 1 - 10 of 10) sorted by relevance

/frameworks/rs/
H A DrsType.cpp199 p.mipmaps = stream->loadU8();
238 if (t->getDimLOD() != params->mipmaps) continue;
265 nt->mDimLOD = params->mipmaps;
302 p.mipmaps = getDimLOD();
314 p.mipmaps = getDimLOD();
363 uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) {
371 p.mipmaps = mipmaps;
362 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
H A DrsScriptC_Lib.cpp340 uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces,
342 return rsi_TypeCreate(rsc, element, dimX, dimY, dimZ, mipmaps, faces, yuv);
346 RsAllocationMipmapControl mipmaps,
348 return rsi_AllocationCreateTyped(rsc, type, mipmaps, usages, ptr);
339 rsrTypeCreate(Context *rsc, const RsElement element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
345 rsrAllocationCreateTyped(Context *rsc, const RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr) argument
H A DrsInternalDefines.h218 bool mipmaps; member in struct:__anon2137
H A DrsAllocation.cpp740 RsAllocationMipmapControl mipmaps,
742 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps, (void*)ptr);
751 RsAllocationMipmapControl mipmaps,
754 Allocation * alloc = Allocation::createAllocationStrided(rsc, static_cast<Type *>(vtype), usages, mipmaps,
764 RsAllocationMipmapControl mipmaps,
768 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
777 if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
786 RsAllocationMipmapControl mipmaps,
793 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
815 if (mipmaps
739 rsi_AllocationCreateTyped(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr) argument
750 rsi_AllocationCreateStrided(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr, size_t requiredAlignment) argument
763 rsi_AllocationCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void *data, size_t sizeBytes, uint32_t usages) argument
785 rsi_AllocationCubeCreateFromBitmap(Context *rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void *data, size_t sizeBytes, uint32_t usages) argument
[all...]
H A DrsHidlAdaptation.cpp409 uint32_t dimY, uint32_t dimZ, bool mipmaps,
414 uint64_t type = GetIContextHandle(context)->typeCreate(_element, dimX, dimY, dimZ, mipmaps, faces,
420 RsAllocationMipmapControl mipmaps,
427 (AllocationMipmapControl)mipmaps, usages, _ptr);
433 RsAllocationMipmapControl mipmaps,
442 (AllocationMipmapControl)mipmaps, _bitmap, usages);
447 RsAllocationMipmapControl mipmaps,
455 uint64_t allocation = GetIContextHandle(context)->allocationCubeCreateFromBitmap(_type, (AllocationMipmapControl)mipmaps, _bitmap, usages);
408 TypeCreate(RsContext context, RsElement element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
419 AllocationCreateTyped(RsContext context, RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr) argument
432 AllocationCreateFromBitmap(RsContext context, RsType type, RsAllocationMipmapControl mipmaps, const void *data, size_t sizeBytes, uint32_t usages) argument
446 AllocationCubeCreateFromBitmap(RsContext context, RsType type, RsAllocationMipmapControl mipmaps, const void *data, size_t sizeBytes, uint32_t usages) argument
H A DrsApiStubs.cpp314 bool mipmaps, bool faces, uint32_t yuv)
316 return RS_DISPATCH(ctxWrapper, TypeCreate, e, dimX, dimY, dimZ, mipmaps, faces, yuv);
332 extern "C" RsAllocation rsAllocationCreateTyped (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps, argument
335 return RS_DISPATCH(ctxWrapper, AllocationCreateTyped, vtype, mipmaps, usages, ptr);
338 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps, argument
341 return RS_DISPATCH(ctxWrapper, AllocationCreateFromBitmap, vtype, mipmaps, data, data_length, usages);
344 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps, argument
347 return RS_DISPATCH(ctxWrapper, AllocationCubeCreateFromBitmap, vtype, mipmaps, data, data_length, usages);
313 rsTypeCreate(RsContext ctxWrapper, RsElement e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) argument
/frameworks/rs/cpp/
H A DAllocation.cpp425 RsAllocationMipmapControl mipmaps, uint32_t usage) {
428 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mipmaps, usage, 0);
438 RsAllocationMipmapControl mipmaps, uint32_t usage,
442 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mipmaps, usage,
424 createTyped(const sp<RS>& rs, const sp<const Type>& type, RsAllocationMipmapControl mipmaps, uint32_t usage) argument
437 createTyped(const sp<RS>& rs, const sp<const Type>& type, RsAllocationMipmapControl mipmaps, uint32_t usage, void *pointer) argument
/frameworks/rs/rsov/driver/
H A DrsovRuntimeStubs.cpp245 uint32_t dimZ, bool mipmaps,
272 if (mipmaps) {
287 if (mipmaps && dimY < 1) {
296 if (dimZ != 0 || dimY == 0 || faces || mipmaps) {
302 Type *type = (Type *)rsrTypeCreate(rsc, element, dimX, dimY, dimZ, mipmaps,
316 RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages,
334 rsc, type, mipmaps, usages, (uintptr_t)ptr);
363 uint32_t dimZ, bool mipmaps, bool faces,
366 CreateType((RsElement)element.p, dimX, dimY, dimZ, mipmaps, faces,
372 rs_allocation_mipmap_control mipmaps,
243 CreateType(RsElement element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv_format) argument
315 CreateAllocation( RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages, void *ptr) argument
362 rsCreateType(::rs_element element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, rs_yuv_format yuv_format) argument
371 rsCreateAllocation(::rs_type type, rs_allocation_mipmap_control mipmaps, uint32_t usages, void *ptr) argument
387 rsCreateType(::rs_element element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, rs_yuv_format yuv_format) argument
395 rsCreateAllocation( ::rs_type type, rs_allocation_mipmap_control mipmaps, uint32_t usages, void *ptr) argument
[all...]
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp263 uint32_t dimZ, bool mipmaps,
293 if (mipmaps) {
307 if (mipmaps && dimY < 1) {
316 if (dimZ != 0 || dimY == 0 || faces || mipmaps) {
322 Type *type = (Type *) rsrTypeCreate(rsc, element, dimX, dimY, dimZ, mipmaps,
337 RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages,
356 mipmaps, usages,
390 uint32_t dimZ, bool mipmaps, bool faces,
393 dimY, dimZ, mipmaps, faces,
399 rs_allocation_mipmap_control mipmaps,
261 CreateType(RsElement element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv_format) argument
336 CreateAllocation( RsType type, RsAllocationMipmapControl mipmaps, uint32_t usages, void *ptr) argument
389 rsCreateType(::rs_element element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, rs_yuv_format yuv_format) argument
398 rsCreateAllocation(::rs_type type, rs_allocation_mipmap_control mipmaps, uint32_t usages, void *ptr) argument
417 rsCreateType(::rs_element element, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, rs_yuv_format yuv_format) argument
425 rsCreateAllocation( ::rs_type type, rs_allocation_mipmap_control mipmaps, uint32_t usages, void *ptr) argument
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp1301 sp<ResourceTypeSet> mipmaps; local
1339 !applyFileOverlay(bundle, assets, &mipmaps, "mipmap")) {
1359 if (mipmaps != NULL) {
1361 err = preProcessImages(bundle, assets, mipmaps, "mipmap");
1364 err = makeFileResources(bundle, assets, &table, mipmaps, "mipmap");
1602 if (mipmaps != NULL) {
1603 ResourceDirIterator it(mipmaps, String8("mipmap"));

Completed in 210 milliseconds