Home
last modified time | relevance | path

Searched refs:sourceTarget (Results 1 – 7 of 7) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/draft/
DXLikelySubtags.java164 for (Entry<String, String> sourceTarget : rawData.entrySet()) { in init()
165 ltp.set(sourceTarget.getKey()); in init()
170 ltp.set(sourceTarget.getValue()); in init()
468 for (Entry<String, String> sourceTarget : rawData.entrySet()) { in main()
469 final String source = sourceTarget.getKey(); in main()
474 final String target = sourceTarget.getValue(); in main()
/external/angle/src/libANGLE/renderer/gl/
DBlitGL.cpp1047 const gl::TextureTarget sourceTarget = gl::TextureTarget::_2D; in generateSRGBMipmap() local
1059 ToGLenum(sourceTarget), 0, mSRGBMipmapGenerationFormat.internalFormat, in generateSRGBMipmap()
1067 ToGLenum(sourceTarget), linearTexture, 0)); in generateSRGBMipmap()
1090 ANGLE_GL_TRY_ALWAYS_CHECK(context, mFunctions->generateMipmap(ToGLenum(sourceTarget))); in generateSRGBMipmap()
1091 ANGLE_GL_TRY(context, mFunctions->texParameteri(ToGLenum(sourceTarget), GL_TEXTURE_MIN_FILTER, in generateSRGBMipmap()
1101 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, ToGLenum(sourceTarget), in generateSRGBMipmap()
1105 ANGLE_GL_TRY(context, mFunctions->texParameteri(ToGLenum(sourceTarget), in generateSRGBMipmap()
/external/angle/src/libANGLE/
DvalidationES3.cpp2355 TextureTarget sourceTarget = NonCubeTextureTypeToTarget(sourceType); in ValidateCopyTexture3DANGLE() local
2356 const Format &sourceFormat = source->getFormat(sourceTarget, sourceLevel); in ValidateCopyTexture3DANGLE()
2378 GLsizei sourceWidth = static_cast<GLsizei>(source->getWidth(sourceTarget, sourceLevel)); in ValidateCopyTexture3DANGLE()
2379 GLsizei sourceHeight = static_cast<GLsizei>(source->getHeight(sourceTarget, sourceLevel)); in ValidateCopyTexture3DANGLE()
2423 TextureTarget sourceTarget = NonCubeTextureTypeToTarget(sourceType); in ValidateCopySubTexture3DANGLE() local
2424 const Format &sourceFormat = source->getFormat(sourceTarget, sourceLevel); in ValidateCopySubTexture3DANGLE()
2454 if (static_cast<size_t>(x + width) > source->getWidth(sourceTarget, sourceLevel) || in ValidateCopySubTexture3DANGLE()
2455 static_cast<size_t>(y + height) > source->getHeight(sourceTarget, sourceLevel) || in ValidateCopySubTexture3DANGLE()
2456 static_cast<size_t>(z + depth) > source->getDepth(sourceTarget, sourceLevel)) in ValidateCopySubTexture3DANGLE()
DvalidationES2.cpp3346 TextureTarget sourceTarget = NonCubeTextureTypeToTarget(sourceType); in ValidateCopyTextureCHROMIUM() local
3354 GLsizei sourceWidth = static_cast<GLsizei>(source->getWidth(sourceTarget, sourceLevel)); in ValidateCopyTextureCHROMIUM()
3355 GLsizei sourceHeight = static_cast<GLsizei>(source->getHeight(sourceTarget, sourceLevel)); in ValidateCopyTextureCHROMIUM()
3362 const InternalFormat &sourceFormat = *source->getFormat(sourceTarget, sourceLevel).info; in ValidateCopyTextureCHROMIUM()
3452 TextureTarget sourceTarget = NonCubeTextureTypeToTarget(sourceType); in ValidateCopySubTextureCHROMIUM() local
3460 if (source->getWidth(sourceTarget, sourceLevel) == 0 || in ValidateCopySubTextureCHROMIUM()
3461 source->getHeight(sourceTarget, sourceLevel) == 0) in ValidateCopySubTextureCHROMIUM()
3479 if (static_cast<size_t>(x + width) > source->getWidth(sourceTarget, sourceLevel) || in ValidateCopySubTextureCHROMIUM()
3480 static_cast<size_t>(y + height) > source->getHeight(sourceTarget, sourceLevel)) in ValidateCopySubTextureCHROMIUM()
3486 const Format &sourceFormat = source->getFormat(sourceTarget, sourceLevel); in ValidateCopySubTextureCHROMIUM()
/external/angle/src/libANGLE/renderer/vulkan/
DTextureVk.cpp673 gl::TextureTarget sourceTarget = NonCubeTextureTypeToTarget(source->getType()); in copyCompressedTexture() local
677 const gl::InternalFormat &internalFormat = *source->getFormat(sourceTarget, sourceLevelGL).info; in copyCompressedTexture()
680 const gl::Extents size(static_cast<int>(source->getWidth(sourceTarget, sourceLevelGL)), in copyCompressedTexture()
681 static_cast<int>(source->getHeight(sourceTarget, sourceLevelGL)), in copyCompressedTexture()
682 static_cast<int>(source->getDepth(sourceTarget, sourceLevelGL))); in copyCompressedTexture()
683 const gl::ImageIndex destIndex = gl::ImageIndex::MakeFromTarget(sourceTarget, destLevelGL, 1); in copyCompressedTexture()
/external/angle/src/tests/gl_tests/
DCopyTextureTest.cpp420 void testCopyTexture(GLenum sourceTarget, in testCopyTexture() argument
457 initializeSourceTexture(sourceTarget, sourceFormat, &srcColors[i * componentCount], in testCopyTexture()
487 void testCopySubTexture(GLenum sourceTarget, in testCopySubTexture() argument
524 initializeSourceTexture(sourceTarget, sourceFormat, &srcColors[i * componentCount], in testCopySubTexture()
/external/angle/src/libANGLE/renderer/d3d/
DTextureD3D.cpp1270 gl::TextureTarget sourceTarget = NonCubeTextureTypeToTarget(source->getType()); in copyCompressedTexture() local
1276 source->getFormat(sourceTarget, sourceLevel).info->sizedInternalFormat; in copyCompressedTexture()
1277 gl::Extents size(static_cast<int>(source->getWidth(sourceTarget, sourceLevel)), in copyCompressedTexture()
1278 static_cast<int>(source->getHeight(sourceTarget, sourceLevel)), 1); in copyCompressedTexture()
1924 gl::TextureTarget sourceTarget = NonCubeTextureTypeToTarget(source->getType()); in copyTexture() local
1929 gl::Extents size(static_cast<int>(source->getWidth(sourceTarget, sourceLevel)), in copyTexture()
1930 static_cast<int>(source->getHeight(sourceTarget, sourceLevel)), 1); in copyTexture()