Searched defs:baseLevel (Results 1 - 25 of 25) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.h71 GLuint baseLevel; /** gl_texture_object->baseLevel it was created for */ member in struct:_radeon_mipmap_tree
74 GLuint width0; /** Width of baseLevel image */
75 GLuint height0; /** Height of baseLevel image */
76 GLuint depth0; /** Depth of baseLevel image */
104 GLenum target, gl_format mesaFormat, GLuint baseLevel, GLuint numLevels,
H A Dradeon_mipmap_tree.c168 for(i = 0, level = mt->baseLevel; i < mt->numLevels; i++, level++) {
189 GLenum target, gl_format mesaFormat, GLuint baseLevel, GLuint numLevels,
202 mt->baseLevel = baseLevel;
327 if (texObj->BaseLevel < mt->baseLevel)
330 mtBaseLevel = &mt->levels[texObj->BaseLevel - mt->baseLevel];
188 radeon_miptree_create(radeonContextPtr rmesa, GLenum target, gl_format mesaFormat, GLuint baseLevel, GLuint numLevels, GLuint width0, GLuint height0, GLuint depth0, GLuint tilebits) argument
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.h71 GLuint baseLevel; /** gl_texture_object->baseLevel it was created for */ member in struct:_radeon_mipmap_tree
74 GLuint width0; /** Width of baseLevel image */
75 GLuint height0; /** Height of baseLevel image */
76 GLuint depth0; /** Depth of baseLevel image */
104 GLenum target, gl_format mesaFormat, GLuint baseLevel, GLuint numLevels,
H A Dradeon_mipmap_tree.c168 for(i = 0, level = mt->baseLevel; i < mt->numLevels; i++, level++) {
189 GLenum target, gl_format mesaFormat, GLuint baseLevel, GLuint numLevels,
202 mt->baseLevel = baseLevel;
327 if (texObj->BaseLevel < mt->baseLevel)
330 mtBaseLevel = &mt->levels[texObj->BaseLevel - mt->baseLevel];
188 radeon_miptree_create(radeonContextPtr rmesa, GLenum target, gl_format mesaFormat, GLuint baseLevel, GLuint numLevels, GLuint width0, GLuint height0, GLuint depth0, GLuint tilebits) argument
/external/mesa3d/src/mesa/state_tracker/
H A Dst_gen_mipmap.c74 uint baseLevel, uint lastLevel)
101 util_gen_mipmap(st->gen_mipmap, psv, face, baseLevel, lastLevel,
147 const uint baseLevel = texObj->BaseLevel; local
209 if (!st_render_mipmap(st, target, stObj, baseLevel, lastLevel)) {
216 for (dstLevel = baseLevel + 1; dstLevel <= lastLevel; dstLevel++) {
71 st_render_mipmap(struct st_context *st, GLenum target, struct st_texture_object *stObj, uint baseLevel, uint lastLevel) argument
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.hpp127 , baseLevel (0)
138 , baseLevel (0)
147 int baseLevel; member in struct:glu::TextureTestUtil::ReferenceParams
H A DgluTextureTestUtil.cpp103 static tcu::Texture1DView getSubView (const tcu::Texture1DView& view, int baseLevel, int maxLevel) argument
105 const int clampedBase = de::clamp(baseLevel, 0, view.getNumLevels()-1);
111 static tcu::Texture2DView getSubView (const tcu::Texture2DView& view, int baseLevel, int maxLevel) argument
113 const int clampedBase = de::clamp(baseLevel, 0, view.getNumLevels()-1);
119 static tcu::TextureCubeView getSubView (const tcu::TextureCubeView& view, int baseLevel, int maxLevel) argument
121 const int clampedBase = de::clamp(baseLevel, 0, view.getNumLevels()-1);
132 static tcu::Texture3DView getSubView (const tcu::Texture3DView& view, int baseLevel, int maxLevel) argument
134 const int clampedBase = de::clamp(baseLevel, 0, view.getNumLevels()-1);
140 static tcu::TextureCubeArrayView getSubView (const tcu::TextureCubeArrayView& view, int baseLevel, int maxLevel) argument
142 const int clampedBase = de::clamp(baseLevel,
[all...]
/external/icu/icu4c/source/common/
H A Dubiditransform.c74 UBiDiLevel baseLevel; /* paragraph level to be used with setPara */ member in struct:__anon7161
132 pTransform->pActiveScheme->baseLevel, NULL, pErrorCode);
/external/mesa3d/src/mesa/main/
H A Dtexobj.c444 const GLint baseLevel = t->BaseLevel; local
463 if ((baseLevel < 0) || (baseLevel >= MAX_TEXTURE_LEVELS)) {
464 incomplete(t, BASE, "base level = %d is invalid", baseLevel);
468 if (t->MaxLevel < baseLevel) {
470 t->MaxLevel, baseLevel);
474 baseImage = t->Image[0][baseLevel];
478 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel);
535 t->_MaxLevel = baseLevel
663 const GLint baseLevel = texObj->BaseLevel; local
[all...]
/external/swiftshader/src/OpenGL/libGLESv2/
H A DTexture.cpp183 bool Texture::setBaseLevel(GLint baseLevel) argument
185 mBaseLevel = baseLevel;
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureMipmapTests.cpp1022 m_renderer.getTextureBinding(0)->updateTextureViewMipLevels(refParams.baseLevel, refParams.maxLevel);
1137 const int baseLevel = (deInt32Hash(cellNdx) ^ deStringHash(m_testParam.minFilterName) ^ 0xac2f274a) % numLevels; local
1139 return baseLevel;
1144 params.baseLevel = getBaseLevel(cellNdx);
1280 m_renderer.getTextureBinding(0)->updateTextureViewMipLevels(refParams.baseLevel, refParams.maxLevel);
1398 const int baseLevel = (deInt32Hash(cellNdx) ^ deStringHash(m_testParam.minFilterName) ^ 0x23fae13) % numLevels; local
1400 return baseLevel;
1405 params.baseLevel = getBaseLevel(cellNdx);
1547 m_renderer.getTextureBinding(0)->updateTextureViewMipLevels(refParams.baseLevel, refParams.maxLevel);
1664 const int baseLevel local
[all...]
H A DvktTextureTestUtil.cpp377 void TextureBinding::updateTextureViewMipLevels (deUint32 baseLevel, deUint32 maxLevel) argument
397 baseLevel, // deUint32 baseMipLevel;
398 maxLevel-baseLevel+1, // deUint32 levelCount;
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp1672 const int baseLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0xac2f274a) % numLevels; local
1674 return baseLevel;
1685 params.baseLevel = getBaseLevel(cellNdx);
1987 const int baseLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x23fae13) % numLevels; local
1989 return baseLevel;
2000 params.baseLevel = getBaseLevel(cellNdx);
2304 const int baseLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x7347e9) % numLevels; local
2306 return baseLevel;
2317 params.baseLevel = getBaseLevel(cellNdx);
/external/deqp/modules/gles31/functional/
H A Des31fTextureGatherTests.cpp958 int baseLevel,
1032 int baseLevel,
1044 , m_baseLevel (baseLevel)
1631 int baseLevel,
1634 : TextureGatherCase (context, name, description, TEXTURETYPE_2D, gatherType, offsetSize, textureFormat, shadowCompareMode, wrapS, wrapT, texSwizzle, minFilter, magFilter, baseLevel, flags)
1721 int baseLevel,
1724 : TextureGatherCase (context, name, description, TEXTURETYPE_2D_ARRAY, gatherType, offsetSize, textureFormat, shadowCompareMode, wrapS, wrapT, texSwizzle, minFilter, magFilter, baseLevel, flags)
1853 int baseLevel,
1856 : TextureGatherCase (context, name, description, TEXTURETYPE_CUBE, GATHERTYPE_BASIC, OFFSETSIZE_NONE, textureFormat, shadowCompareMode, wrapS, wrapT, texSwizzle, minFilter, magFilter, baseLevel, flags)
1993 int baseLevel,
1019 TextureGatherCase(Context& context, const char* name, const char* description, TextureType textureType, GatherType gatherType, OffsetSize offsetSize, tcu::TextureFormat textureFormat, tcu::Sampler::CompareMode shadowCompareMode, tcu::Sampler::WrapMode wrapS, tcu::Sampler::WrapMode wrapT, const MaybeTextureSwizzle& textureSwizzle, tcu::Sampler::FilterMode minFilter, tcu::Sampler::FilterMode magFilter, int baseLevel, deUint32 flags) argument
1619 TextureGather2DCase(Context& context, const char* name, const char* description, GatherType gatherType, OffsetSize offsetSize, tcu::TextureFormat textureFormat, tcu::Sampler::CompareMode shadowCompareMode, tcu::Sampler::WrapMode wrapS, tcu::Sampler::WrapMode wrapT, const MaybeTextureSwizzle& texSwizzle, tcu::Sampler::FilterMode minFilter, tcu::Sampler::FilterMode magFilter, int baseLevel, deUint32 flags, const IVec2& textureSize) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_gen_mipmap.c1104 uint layer, uint baseLevel, uint lastLevel)
1109 for (dstLevel = baseLevel + 1; dstLevel <= lastLevel; dstLevel++) {
1142 uint layer, uint baseLevel, uint lastLevel)
1150 for (dstLevel = baseLevel + 1; dstLevel <= lastLevel; dstLevel++) {
1186 uint face, uint baseLevel, uint lastLevel)
1198 for (dstLevel = baseLevel + 1; dstLevel <= lastLevel; dstLevel++) {
1238 uint layer, uint baseLevel, uint lastLevel)
1242 make_1d_mipmap(ctx, pt, layer, baseLevel, lastLevel);
1247 make_2d_mipmap(ctx, pt, layer, baseLevel, lastLevel);
1250 make_3d_mipmap(ctx, pt, layer, baseLevel, lastLeve
1102 make_1d_mipmap(struct gen_mipmap_state *ctx, struct pipe_resource *pt, uint layer, uint baseLevel, uint lastLevel) argument
1140 make_2d_mipmap(struct gen_mipmap_state *ctx, struct pipe_resource *pt, uint layer, uint baseLevel, uint lastLevel) argument
1184 make_3d_mipmap(struct gen_mipmap_state *ctx, struct pipe_resource *pt, uint face, uint baseLevel, uint lastLevel) argument
1236 fallback_gen_mipmap(struct gen_mipmap_state *ctx, struct pipe_resource *pt, uint layer, uint baseLevel, uint lastLevel) argument
1515 util_gen_mipmap(struct gen_mipmap_state *ctx, struct pipe_sampler_view *psv, uint face, uint baseLevel, uint lastLevel, uint filter) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderTextureGatherTests.cpp1001 int baseLevel; member in struct:vkt::sr::__anon3918::GatherCaseBaseParams
1028 , baseLevel (baseLevel_)
1044 , baseLevel (0)
1203 if (m_baseParams.baseLevel != 0)
1204 textureParams.baseMipLevel = m_baseParams.baseLevel;
1209 log << TestLog::Message << "Texture base level is " << m_baseParams.baseLevel << TestLog::EndMessage
1715 const int levelBegin = m_baseParams.baseLevel;
1717 DE_ASSERT(m_baseParams.baseLevel < texture->getNumLevels());
1738 return TextureGatherInstance::verify(rendered, getOneLevelSubView(tcu::Texture2DView(m_swizzledTexture), m_baseParams.baseLevel), texCoords, m_iterations[iterationNdx]);
1756 const int baseLevel,
1770 TextureGather2DCase(tcu::TestContext& testCtx, const string& name, const string& description, const GatherType gatherType, const OffsetSize offsetSize, const tcu::TextureFormat textureFormat, const tcu::Sampler::CompareMode shadowCompareMode, const tcu::Sampler::WrapMode wrapS, const tcu::Sampler::WrapMode wrapT, const MaybeTextureSwizzle& textureSwizzle, const tcu::Sampler::FilterMode minFilter, const tcu::Sampler::FilterMode magFilter, const int baseLevel, const deUint32 flags, const IVec2& textureSize, const ImageBackingMode sparseCase) argument
1982 TextureGather2DArrayCase(tcu::TestContext& testCtx, const string& name, const string& description, const GatherType gatherType, const OffsetSize offsetSize, const tcu::TextureFormat textureFormat, const tcu::Sampler::CompareMode shadowCompareMode, const tcu::Sampler::WrapMode wrapS, const tcu::Sampler::WrapMode wrapT, const MaybeTextureSwizzle& textureSwizzle, const tcu::Sampler::FilterMode minFilter, const tcu::Sampler::FilterMode magFilter, const int baseLevel, const deUint32 flags, const IVec3& textureSize, const ImageBackingMode sparseCase) argument
2200 TextureGatherCubeCase(tcu::TestContext& testCtx, const string& name, const string& description, const tcu::TextureFormat textureFormat, const tcu::Sampler::CompareMode shadowCompareMode, const tcu::Sampler::WrapMode wrapS, const tcu::Sampler::WrapMode wrapT, const MaybeTextureSwizzle& textureSwizzle, const tcu::Sampler::FilterMode minFilter, const tcu::Sampler::FilterMode magFilter, const int baseLevel, const deUint32 flags, const int textureSize, const ImageBackingMode sparseCase) argument
2263 makeTextureGatherCase(TextureType textureType, tcu::TestContext& testCtx, const string& name, const string& description, GatherType gatherType, OffsetSize offsetSize, tcu::TextureFormat textureFormat, tcu::Sampler::CompareMode shadowCompareMode, tcu::Sampler::WrapMode wrapS, tcu::Sampler::WrapMode wrapT, const MaybeTextureSwizzle& texSwizzle, tcu::Sampler::FilterMode minFilter, tcu::Sampler::FilterMode magFilter, int baseLevel, const IVec3& textureSize, deUint32 flags = 0, const ImageBackingMode sparseCase = ShaderRenderCaseInstance::IMAGE_BACKING_MODE_REGULAR) argument
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp97 void setBaseLevel (int baseLevel) { m_baseLevel = baseLevel; } argument
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c3241 const GLuint baseLevel = texObj->BaseLevel; local
3361 for (dstLevel = baseLevel + 1; dstLevel <= maxLevel; dstLevel++) {
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingShaderAccessTests.cpp3469 const tcu::ConstPixelBufferAccess baseLevel = sourceImage.getLevel(0); local
3473 const deUint32 arraySize = (viewType == vk::VK_IMAGE_VIEW_TYPE_1D || viewType == vk::VK_IMAGE_VIEW_TYPE_1D_ARRAY) ? (baseLevel.getHeight())
3474 : (viewType == vk::VK_IMAGE_VIEW_TYPE_2D || viewType == vk::VK_IMAGE_VIEW_TYPE_2D_ARRAY) ? (baseLevel.getDepth())
3476 : (viewType == vk::VK_IMAGE_VIEW_TYPE_CUBE || viewType == vk::VK_IMAGE_VIEW_TYPE_CUBE_ARRAY) ? (baseLevel.getDepth()) // cube: numFaces * numLayers
3481 (deUint32)baseLevel.getWidth(),
3484 (viewType == vk::VK_IMAGE_VIEW_TYPE_1D || viewType == vk::VK_IMAGE_VIEW_TYPE_1D_ARRAY) ? (1u) : (deUint32)baseLevel.getHeight(),
3487 (viewType == vk::VK_IMAGE_VIEW_TYPE_3D) ? ((deUint32)baseLevel.getDepth()) : (1u),
3495 vk::mapTextureFormat(baseLevel.getFormat()), // format
3521 const tcu::ConstPixelBufferAccess baseLevel = sourceImage.getLevel(0); local
3524 : (viewType == vk::VK_IMAGE_VIEW_TYPE_1D_ARRAY) ? (baseLevel
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 405 milliseconds