Searched refs:destFormatInfo (Results 1 – 5 of 5) sorted by relevance
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Image11.cpp | 103 const auto &destFormatInfo = in CopyImage() local 105 GLuint destPixelBytes = destFormatInfo.pixelBytes; in CopyImage() 116 destFormatInfo.componentType, sourceBox.width, sourceBox.height, in CopyImage() 412 const gl::InternalFormat &destFormatInfo = gl::GetSizedInternalFormatInfo(mInternalFormat); in copyFromFramebuffer() local 416 auto loadFunction = destD3D11Format.getLoadFunctions()(destFormatInfo.type); in copyFromFramebuffer() 420 size_t bufferSize = destFormatInfo.pixelBytes * sourceArea.width * sourceArea.height; in copyFromFramebuffer() 427 GLuint memoryBufferRowPitch = destFormatInfo.pixelBytes * sourceArea.width; in copyFromFramebuffer() 430 context, *srcAttachment, sourceArea, destFormatInfo.format, destFormatInfo.type, in copyFromFramebuffer() 441 context, *srcAttachment, sourceArea, destFormatInfo.format, destFormatInfo.type, in copyFromFramebuffer()
|
D | Renderer11.cpp | 3665 const auto &destFormatInfo = in blitRenderbufferRect() local 3677 (srcFormatInfo.redBits > 0) && (destFormatInfo.redBits == 0) && (nativeFormat.redBits > 0); in blitRenderbufferRect() 3678 colorMask.green = (srcFormatInfo.greenBits > 0) && (destFormatInfo.greenBits == 0) && in blitRenderbufferRect() 3680 colorMask.blue = (srcFormatInfo.blueBits > 0) && (destFormatInfo.blueBits == 0) && in blitRenderbufferRect() 3682 colorMask.alpha = (srcFormatInfo.alphaBits > 0) && (destFormatInfo.alphaBits == 0) && in blitRenderbufferRect() 3791 destFormatInfo.format, GL_NONE, filter, maskOffAlpha, in blitRenderbufferRect()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | TextureGL.cpp | 902 const gl::InternalFormat &destFormatInfo = gl::GetInternalFormatInfo(internalFormat, type); in copyTexture() local 904 sourceArea, destFormatInfo, unpackFlipY, unpackPremultiplyAlpha, in copyTexture() 920 const gl::InternalFormat &destFormatInfo = *mState.getImageDesc(target, level).format.info; in copySubTexture() local 922 destFormatInfo, unpackFlipY, unpackPremultiplyAlpha, in copySubTexture()
|
D | BlitGL.cpp | 797 const auto &destFormatInfo = angle::Format::Get(destFormatID); in copySubTextureCPUReadback() local 801 destInternalFormatInfo.pixelBytes, 0, destFormatInfo.pixelWriteFunction, in copySubTextureCPUReadback()
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | TextureVk.cpp | 586 const gl::InternalFormat &destFormatInfo = gl::GetInternalFormatInfo(internalFormat, type); in copyTexture() local 587 const vk::Format &destVkFormat = renderer->getFormat(destFormatInfo.sizedInternalFormat); in copyTexture() 591 return copySubTextureImpl(vk::GetImpl(context), index, gl::kOffsetZero, destFormatInfo, in copyTexture() 608 const gl::InternalFormat &destFormatInfo = in copySubTexture() local 610 return copySubTextureImpl(vk::GetImpl(context), index, destOffset, destFormatInfo, in copySubTexture()
|