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

1 2

  /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 53 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
76 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
83 , m_useMipmaps (mipmaps)
168 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
196 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
203 , m_useMipmaps (mipmaps)
es2fTextureUnitTests.cpp 644 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); local
645 int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
652 // Certain minification filters are only used when using mipmaps.
653 if (mipmaps)
713 int curCellSize = deMax32(1, GRID_CELL_SIZE >> levelNdx); // \note Scale grid cell size for mipmaps.
853 bool mipmaps = (deIsPowerOfTwo32(texture->getWidth()) && deIsPowerOfTwo32(texture->getHeight())); local
854 int numLevels = mipmaps ? deLog2Floor32(de::max(texture->getWidth(), texture->getHeight()))+1 : 1;
875 bool mipmaps = deIsPowerOfTwo32(texture->getSize()) != DE_FALSE; local
876 int numLevels = mipmaps ? deLog2Floor32(texture->getSize())+1 : 1;
    [all...]
es2fTextureFilteringTests.cpp 173 bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
174 int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
436 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
437 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
es2fVertexTextureTests.cpp 477 // Compute suitable power-of-two sizes (for mipmaps).
487 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); local
488 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
780 // Compute suitable power-of-two sizes (for mipmaps).
793 const bool mipmaps = deIsPowerOfTwo32(texWidth) != DE_FALSE; local
794 const int numLevels = mipmaps ? deLog2Floor32(texWidth)+1 : 1;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSizeTests.cpp 53 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
76 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
83 , m_useMipmaps (mipmaps)
168 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps);
196 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps)
203 , m_useMipmaps (mipmaps)
es3fTextureUnitTests.cpp 826 bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight) && deIsPowerOfTwo32(texDepth)); local
827 int numLevels = mipmaps ? deLog2Floor32(de::max(de::max(texWidth, texHeight), texDepth))+1 : 1;
839 if (mipmaps)
904 int curCellSize = deMax32(1, GRID_CELL_SIZE >> levelNdx); // \note Scale grid cell size for mipmaps.
    [all...]
es3fVertexTextureTests.cpp 578 // Compute suitable power-of-two sizes (for mipmaps).
588 const bool mipmaps = (deIsPowerOfTwo32(texWidth) && deIsPowerOfTwo32(texHeight)); local
589 const int numLevels = mipmaps ? deLog2Floor32(de::max(texWidth, texHeight))+1 : 1;
884 // Compute suitable power-of-two sizes (for mipmaps).
897 const bool mipmaps = deIsPowerOfTwo32(texWidth) != DE_FALSE; local
898 const int numLevels = mipmaps ? deLog2Floor32(texWidth)+1 : 1;
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rs.spec 40 param bool mipmaps
49 param RsAllocationMipmapControl mipmaps
58 param RsAllocationMipmapControl mipmaps
67 param RsAllocationMipmapControl mipmaps
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rs.spec 40 param bool mipmaps
49 param RsAllocationMipmapControl mipmaps
58 param RsAllocationMipmapControl mipmaps
67 param RsAllocationMipmapControl mipmaps
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rs.spec 40 param bool mipmaps
49 param RsAllocationMipmapControl mipmaps
58 param RsAllocationMipmapControl mipmaps
67 param RsAllocationMipmapControl mipmaps
  /frameworks/rs/
rs.spec 40 param bool mipmaps
49 param RsAllocationMipmapControl mipmaps
58 param RsAllocationMipmapControl mipmaps
67 param RsAllocationMipmapControl mipmaps
rsAllocation.cpp 636 RsAllocationMipmapControl mipmaps,
638 Allocation * alloc = Allocation::createAllocation(rsc, static_cast<Type *>(vtype), usages, mipmaps, (void*)ptr);
647 RsAllocationMipmapControl mipmaps,
651 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
660 if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
669 RsAllocationMipmapControl mipmaps,
676 RsAllocation vTexAlloc = rsi_AllocationCreateTyped(rsc, vtype, mipmaps, usages, 0);
698 if (mipmaps == RS_ALLOCATION_MIPMAP_FULL) {
rsType.cpp 331 uint32_t dimY, uint32_t dimZ, bool mipmaps, bool faces, uint32_t yuv) {
334 return Type::getType(rsc, e, dimX, dimY, dimZ, mipmaps, faces, yuv);
  /external/chromium_org/third_party/skia/third_party/ktx/
ktx.cpp 236 int mipmaps = SkMax32(fHeader.fNumberOfMipmapLevels, 1); local
237 SkASSERT(mipmaps == 1);
248 for (int mipmap = 0; mipmap < mipmaps; ++mipmap) {
  /external/skia/third_party/ktx/
ktx.cpp 236 int mipmaps = SkMax32(fHeader.fNumberOfMipmapLevels, 1); local
237 SkASSERT(mipmaps == 1);
248 for (int mipmap = 0; mipmap < mipmaps; ++mipmap) {
  /frameworks/rs/cpp/
Allocation.cpp 334 RsAllocationMipmapControl mipmaps, uint32_t usage) {
337 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mipmaps, usage, 0);
347 RsAllocationMipmapControl mipmaps, uint32_t usage,
351 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mipmaps, usage,
rsCppStructs.h 353 * includes mipmaps. This function will generate a complete set of mipmaps
509 * @param[in] mipmaps desired mipmap behavior for the Allocation
514 RsAllocationMipmapControl mipmaps, uint32_t usage);
521 * @param[in] mipmaps desired mipmap behavior for the Allocation
527 RsAllocationMipmapControl mipmaps, uint32_t usage, void * pointer);
530 * Creates an Allocation for use by scripts with a given Type with no mipmaps.
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 142 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
143 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
403 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height); local
404 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppStructs.h 352 * includes mipmaps. This function will generate a complete set of mipmaps
508 * @param[in] mipmaps desired mipmap behavior for the Allocation
513 RsAllocationMipmapControl mipmaps, uint32_t usage);
520 * @param[in] mipmaps desired mipmap behavior for the Allocation
526 RsAllocationMipmapControl mipmaps, uint32_t usage, void * pointer);
529 * Creates an Allocation for use by scripts with a given Type with no mipmaps.
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppStructs.h 352 * includes mipmaps. This function will generate a complete set of mipmaps
508 * @param[in] mipmaps desired mipmap behavior for the Allocation
513 RsAllocationMipmapControl mipmaps, uint32_t usage);
520 * @param[in] mipmaps desired mipmap behavior for the Allocation
526 RsAllocationMipmapControl mipmaps, uint32_t usage, void * pointer);
529 * Creates an Allocation for use by scripts with a given Type with no mipmaps.
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/
rsCppStructs.h 352 * includes mipmaps. This function will generate a complete set of mipmaps
508 * @param[in] mipmaps desired mipmap behavior for the Allocation
513 RsAllocationMipmapControl mipmaps, uint32_t usage);
520 * @param[in] mipmaps desired mipmap behavior for the Allocation
526 RsAllocationMipmapControl mipmaps, uint32_t usage, void * pointer);
529 * Creates an Allocation for use by scripts with a given Type with no mipmaps.
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 1165 sp<ResourceTypeSet> mipmaps; local
    [all...]

Completed in 618 milliseconds

1 2