Searched refs:mipmaps (Results 1 - 15 of 15) sorted by relevance

/external/deqp/modules/gles2/performance/
H A Des2pTextureCases.cpp105 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/
H A Des3pTextureCases.cpp113 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/
H A Des2fTextureSizeTests.cpp53 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) argument
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) argument
203 , m_useMipmaps (mipmaps)
H A Des2fTextureUnitTests.cpp644 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;
H A Des2fTextureFilteringTests.cpp173 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;
H A Des2fVertexTextureTests.cpp477 // 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;
/external/deqp/modules/gles3/functional/
H A Des3fTextureSizeTests.cpp53 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) argument
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) argument
203 , m_useMipmaps (mipmaps)
H A Des3fTextureUnitTests.cpp826 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.
H A Des3fVertexTextureTests.cpp578 // 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;
H A Des3fTextureFilteringTests.cpp173 const bool mipmaps = true; local
174 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
/external/chromium_org/third_party/skia/third_party/ktx/
H A Dktx.cpp296 int mipmaps = SkMax32(fHeader.fNumberOfMipmapLevels, 1); local
297 SkASSERT(mipmaps == 1);
308 for (int mipmap = 0; mipmap < mipmaps; ++mipmap) {
/external/skia/third_party/ktx/
H A Dktx.cpp236 int mipmaps = SkMax32(fHeader.fNumberOfMipmapLevels, 1); local
237 SkASSERT(mipmaps == 1);
248 for (int mipmap = 0; mipmap < mipmaps; ++mipmap) {
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureFilteringTests.cpp142 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;
/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_texture_array.spec64 textures without mipmaps. Both of these options have major drawbacks.
/external/mesa3d/docs/
H A DMESA_texture_array.spec64 textures without mipmaps. Both of these options have major drawbacks.

Completed in 725 milliseconds