HomeSort by relevance Sort by last modified time
    Searched refs:mipmaps (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/rs/
rs_compat.spec 4 param RsAllocationMipmapControl mipmaps
rsType.cpp 199 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;
rsInternalDefines.h 218 bool mipmaps; member in struct:__anon39759
rsScriptC_Lib.cpp 340 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);
rs.spec 44 param bool mipmaps
59 param RsAllocationMipmapControl mipmaps
68 param RsAllocationMipmapControl mipmaps
77 param RsAllocationMipmapControl mipmaps
rsAllocation.cpp 740 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 == RS_ALLOCATION_MIPMAP_FULL)
    [all...]
rsApiStubs.h 54 extern "C" RsType rsTypeCreate (RsContext rsc, RsElement e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv);
59 extern "C" RsAllocation rsAllocationCreateTyped (RsContext rsc, RsType vtype, RsAllocationMipmapControl mipmaps, uint32_t usages, uintptr_t ptr);
60 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void * data, size_t data_length, uint32_t usages);
61 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext rsc, RsType vtype, RsAllocationMipmapControl mipmaps, const void * data, size_t data_length, uint32_t usages);
rsApiStubs.cpp 319 bool mipmaps, bool faces, uint32_t yuv)
321 return RS_DISPATCH(ctxWrapper, TypeCreate, e, dimX, dimY, dimZ, mipmaps, faces, yuv);
337 extern "C" RsAllocation rsAllocationCreateTyped (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps,
340 return RS_DISPATCH(ctxWrapper, AllocationCreateTyped, vtype, mipmaps, usages, ptr);
343 extern "C" RsAllocation rsAllocationCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps,
346 return RS_DISPATCH(ctxWrapper, AllocationCreateFromBitmap, vtype, mipmaps, data, data_length, usages);
349 extern "C" RsAllocation rsAllocationCubeCreateFromBitmap (RsContext ctxWrapper, RsType vtype, RsAllocationMipmapControl mipmaps,
352 return RS_DISPATCH(ctxWrapper, AllocationCubeCreateFromBitmap, vtype, mipmaps, data, data_length, usages);
    [all...]
rsRuntime.h 166 uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces,
170 RsAllocationMipmapControl mipmaps,
rsHidlAdaptation.cpp 409 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);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
TextureImageDetailsProvider.java 144 IGLProperty mipmaps = local
146 if (!(mipmaps instanceof GLSparseArrayProperty)) {
150 IGLProperty perTextureLevelState = ((GLSparseArrayProperty) mipmaps).getProperty(0);
  /external/deqp/modules/gles2/performance/
es2pTextureCases.cpp 105 bool mipmaps = m_minFilter == GL_NEAREST_MIPMAP_NEAREST || local
110 DE_ASSERT(m_powerOfTwo || (!mipmaps && m_wrapS == GL_CLAMP_TO_EDGE && m_wrapT == GL_CLAMP_TO_EDGE));
127 log << TestLog::Message << "Mipmaps: " << (mipmaps ? "true" : "false") << TestLog::EndMessage;
171 int numLevels = mipmaps ? texture->getRefTexture().getNumLevels() : 1;
  /external/deqp/modules/gles3/performance/
es3pTextureCases.cpp 113 bool mipmaps = m_minFilter == GL_NEAREST_MIPMAP_NEAREST || local
118 DE_ASSERT(m_powerOfTwo || (!mipmaps && m_wrapS == GL_CLAMP_TO_EDGE && m_wrapT == GL_CLAMP_TO_EDGE));
135 log << TestLog::Message << "Mipmaps: " << (mipmaps ? "true" : "false") << TestLog::EndMessage;
197 int numLevels = mipmaps ? texture->getRefTexture().getNumLevels() : 1;
  /external/deqp/modules/gles2/functional/
es2fTextureSizeTests.cpp 54 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
77 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
84 , m_useMipmaps (mipmaps)
169 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
197 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
204 , m_useMipmaps (mipmaps)
es2fTextureUnitTests.cpp 645 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); local
646 int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
653 // Certain minification filters are only used when using mipmaps.
654 if (mipmaps)
714 int curCellSize = deMax32(1, GRID_CELL_SIZE >> levelNdx); // \note Scale grid cell size for mipmaps.
854 bool mipmaps = (deIsPowerOfTwo32(texture->getWidth()) && deIsPowerOfTwo32(texture->getHeight())); local
855 int numLevels = mipmaps ? deLog2Floor32(de::max(texture->getWidth(), texture->getHeight()))+1 : 1;
876 bool mipmaps = deIsPowerOfTwo32(texture->getSize()) != DE_FALSE; local
877 int numLevels = mipmaps ? deLog2Floor32(texture->getSize())+1 : 1;
    [all...]
es2fTextureFilteringTests.cpp 174 bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
175 int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
437 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
438 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
es2fVertexTextureTests.cpp 480 // Compute suitable power-of-two sizes (for mipmaps).
490 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); local
491 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
783 // Compute suitable power-of-two sizes (for mipmaps).
796 const bool mipmaps = deIsPowerOfTwo32(texWidth) != DE_FALSE; local
797 const int numLevels = mipmaps ? deLog2Floor32(texWidth)+1 : 1;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSizeTests.cpp 55 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
78 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
85 , m_useMipmaps (mipmaps)
170 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
198 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
205 , m_useMipmaps (mipmaps)
  /frameworks/rs/rsov/driver/
rsovRuntimeStubs.cpp 245 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,
    [all...]
  /external/skia/src/gpu/
SkGr.cpp 219 std::unique_ptr<SkMipMap> mipmaps(SkMipMap::Build(pixmap, colorMode, nullptr));
220 if (!mipmaps) {
224 const int mipLevelCount = mipmaps->countLevels() + 1;
239 mipmaps->getLevel(i - 1, &generatedMipLevel);
703 // Should be unreachable. If not, fall back to mipmaps.
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 263 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,
    [all...]
  /external/ImageMagick/coders/
dds.c 2587 mipmaps, local
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 144 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
145 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
405 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
406 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
  /frameworks/rs/cpp/
Allocation.cpp 425 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,
  /frameworks/rs/script_api/
rs_allocation_create.spec 82 arg: bool mipmaps, "Flag indicating if the Type has a mipmap chain"
97 mipmaps indicates the presence of level of detail (LOD).

Completed in 895 milliseconds

1 2