/external/angle/src/libANGLE/renderer/ |
D | TextureImpl.cpp | 23 GLint sourceLevel, in copyTexture() argument 36 GLint sourceLevel, in copySubTexture() argument 94 GLint sourceLevel, in copy3DTexture() argument 108 GLint sourceLevel, in copy3DSubTexture() argument
|
D | TextureImpl.h | 100 GLint sourceLevel, 108 GLint sourceLevel, 150 GLint sourceLevel, 159 GLint sourceLevel,
|
/external/angle/extensions/ |
D | CHROMIUM_copy_texture.txt | 35 int sourceLevel, 47 int sourceLevel, 67 Copies the contents of <sourceLevel> level of <sourceId> texture to 132 INVALID_VALUE is generated if <sourceLevel> is not 0 for ES 2.0, or if 133 <sourceLevel> or <destLevel> is less than 0 for ES 3.0. 135 INVALID_VALUE is generated if <sourceLevel> of the source texture is not 146 <sourceLevel>, <destLevel>, <flipY>, <premultiplyAlpha>, and
|
D | ANGLE_copy_texture_3d.txt | 41 int sourceLevel, 52 int sourceLevel,
|
/external/angle/src/libANGLE/renderer/gl/ |
D | BlitGL.h | 97 size_t sourceLevel, 115 size_t sourceLevel, 133 size_t sourceLevel,
|
D | TextureGL.h | 118 GLint sourceLevel, 126 GLint sourceLevel, 136 GLint sourceLevel,
|
D | TextureGL.cpp | 885 GLint sourceLevel, in copyTexture() argument 895 sourceGL->mState.getImageDesc(NonCubeTextureTypeToTarget(source->getType()), sourceLevel); in copyTexture() 903 return copySubTextureHelper(context, target, level, gl::Offset(0, 0, 0), sourceLevel, in copyTexture() 911 GLint sourceLevel, in copySubTexture() argument 921 return copySubTextureHelper(context, target, level, destOffset, sourceLevel, sourceBox.toRect(), in copySubTexture() 930 GLint sourceLevel, in copySubTextureHelper() argument 944 sourceGL->mState.getImageDesc(NonCubeTextureTypeToTarget(source->getType()), sourceLevel); in copySubTextureHelper() 959 sourceGL->getLevelInfo(NonCubeTextureTypeToTarget(source->getType()), sourceLevel); in copySubTextureHelper() 976 ANGLE_TRY(blitter->copyTexSubImage(context, sourceGL, sourceLevel, this, target, level, in copySubTextureHelper() 995 context, sourceGL, sourceLevel, sourceComponentType, mTextureID, target, level, in copySubTextureHelper() [all …]
|
D | BlitGL.cpp | 561 size_t sourceLevel, in copySubTexture() argument 623 ANGLE_TRY(source->setBaseLevel(context, static_cast<GLuint>(sourceLevel))); in copySubTexture() 677 size_t sourceLevel, in copySubTextureCPUReadback() argument 714 source->getTextureID(), static_cast<GLint>(sourceLevel))); in copySubTextureCPUReadback() 735 context, source, sourceLevel, sourceInternalFormatInfo.componentType, in copySubTextureCPUReadback() 824 size_t sourceLevel, in copyTexSubImage() argument 838 source->getTextureID(), static_cast<GLint>(sourceLevel))); in copyTexSubImage()
|
/external/angle/src/libANGLE/renderer/d3d/ |
D | TextureD3D.cpp | 1164 GLint sourceLevel, in copyTexture() argument 1176 static_cast<int>(source->getWidth(NonCubeTextureTypeToTarget(sourceType), sourceLevel)), in copyTexture() 1177 static_cast<int>(source->getHeight(NonCubeTextureTypeToTarget(sourceType), sourceLevel)), in copyTexture() 1191 ANGLE_TRY(mRenderer->copyTexture(context, source, sourceLevel, gl::TextureTarget::_2D, in copyTexture() 1199 gl::ImageIndex sourceImageIndex = gl::ImageIndex::Make2D(sourceLevel); in copyTexture() 1222 GLint sourceLevel, in copySubTexture() argument 1239 ANGLE_TRY(mRenderer->copyTexture(context, source, sourceLevel, gl::TextureTarget::_2D, in copySubTexture() 1247 gl::ImageIndex sourceImageIndex = gl::ImageIndex::Make2D(sourceLevel); in copySubTexture() 1271 GLint sourceLevel = 0; in copyCompressedTexture() local 1276 source->getFormat(sourceTarget, sourceLevel).info->sizedInternalFormat; in copyCompressedTexture() [all …]
|
D | TextureD3D.h | 278 GLint sourceLevel, 286 GLint sourceLevel, 410 GLint sourceLevel, 418 GLint sourceLevel, 543 GLint sourceLevel, 551 GLint sourceLevel, 673 GLint sourceLevel, 681 GLint sourceLevel,
|
D | RendererD3D.h | 237 GLint sourceLevel, 251 GLint sourceLevel,
|
/external/angle/src/libANGLE/renderer/null/ |
D | TextureNULL.h | 72 GLint sourceLevel, 80 GLint sourceLevel,
|
D | TextureNULL.cpp | 92 GLint sourceLevel, in copyTexture() argument 104 GLint sourceLevel, in copySubTexture() argument
|
/external/angle/src/libANGLE/renderer/metal/ |
D | TextureMtl.h | 88 GLint sourceLevel, 96 GLint sourceLevel, 256 GLint sourceLevel,
|
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/ |
D | common.mm | 173 sourceLevel:0 225 sourceLevel:0 280 sourceLevel:0
|
/external/angle/include/GLES2/ |
D | gl2ext_angle.h | 82 GLint sourceLevel, 92 GLint sourceLevel, 107 GLint sourceLevel, 117 GLint sourceLevel, 145 GLint sourceLevel, 155 GLint sourceLevel, 173 GLint sourceLevel, 183 GLint sourceLevel,
|
/external/angle/src/libANGLE/ |
D | Context_gles_ext_autogen.h | 272 void copyTexture3D(TextureID sourceIdPacked, GLint sourceLevel, \ 276 void copySubTexture3D(TextureID sourceIdPacked, GLint sourceLevel, \ 443 void copyTexture(TextureID sourceIdPacked, GLint sourceLevel, TextureTarget destTargetPacked, \ 447 void copySubTexture(TextureID sourceIdPacked, GLint sourceLevel, \
|
D | validationES3.cpp | 143 GLint sourceLevel, in ValidateCopyTexture3DCommon() argument 2336 GLint sourceLevel, in ValidateCopyTexture3DANGLE() argument 2356 const Format &sourceFormat = source->getFormat(sourceTarget, sourceLevel); in ValidateCopyTexture3DANGLE() 2365 if (!ValidateCopyTexture3DCommon(context, source, sourceLevel, in ValidateCopyTexture3DANGLE() 2372 if (!ValidMipLevel(context, source->getType(), 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() 2397 GLint sourceLevel, in ValidateCopySubTexture3DANGLE() argument 2424 const Format &sourceFormat = source->getFormat(sourceTarget, sourceLevel); in ValidateCopySubTexture3DANGLE() 2435 if (!ValidateCopyTexture3DCommon(context, source, sourceLevel, in ValidateCopySubTexture3DANGLE() [all …]
|
D | Texture.h | 443 GLint sourceLevel, 452 GLint sourceLevel,
|
D | validationES2.cpp | 3315 GLint sourceLevel, in ValidateCopyTextureCHROMIUM() argument 3348 if (!IsValidCopyTextureSourceLevel(context, sourceType, sourceLevel)) in ValidateCopyTextureCHROMIUM() 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() 3417 GLint sourceLevel, in ValidateCopySubTextureCHROMIUM() argument 3454 if (!IsValidCopyTextureSourceLevel(context, sourceType, sourceLevel)) in ValidateCopySubTextureCHROMIUM() 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() [all …]
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Blit9.h | 63 GLint sourceLevel,
|
D | Blit9.cpp | 287 GLint sourceLevel, in copyTexture() argument 312 ASSERT(sourceLevel == 0); in copyTexture() 317 ANGLE_TRY(sourceStorage9->getSurfaceLevel(context, gl::TextureTarget::_2D, sourceLevel, true, in copyTexture()
|
D | Renderer9.h | 209 GLint sourceLevel, 223 GLint sourceLevel,
|
/external/skqp/src/gpu/mtl/ |
D | GrMtlGpu.mm | 201 sourceLevel: currentMipLevel 490 sourceLevel: mipLevel 632 sourceLevel: 0 794 sourceLevel: 0
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Renderer11.h | 167 GLint sourceLevel, 181 GLint sourceLevel,
|