Home
last modified time | relevance | path

Searched refs:srcAngleFormat (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/libANGLE/renderer/metal/
Dmtl_render_utils.h487 const angle::Format &srcAngleFormat,
518 const angle::Format &srcAngleFormat,
525 const angle::Format &srcAngleFormat,
530 const angle::Format &srcAngleFormat,
534 const angle::Format &srcAngleFormat,
545 const angle::Format &srcAngleFormat);
550 const angle::Format &srcAngleFormat);
556 const angle::Format &srcAngleFormat,
562 const angle::Format &srcAngleFormat,
594 const angle::Format &srcAngleFormat,
[all …]
Dmtl_render_utils.mm989 const angle::Format &srcAngleFormat,
992 int index = GetPixelTypeIndex(srcAngleFormat);
998 const angle::Format &srcAngleFormat,
1015 return blitColorWithDraw(context, cmdEncoder, srcAngleFormat, params);
1020 const angle::Format &srcAngleFormat,
1024 if (!srcAngleFormat.isInt() && dstAngleFormat.isUint())
1028 ASSERT(srcAngleFormat.isSint() == dstAngleFormat.isSint() &&
1029 srcAngleFormat.isUint() == dstAngleFormat.isUint());
1030 return blitColorWithDraw(context, cmdEncoder, srcAngleFormat, params);
1136 const angle::Format &srcAngleFormat,
[all …]
DTextureMtl.mm203 const angle::Format &srcAngleFormat,
213 if (srcAngleFormat.id == dstAngleFormat.id)
232 ASSERT(srcAngleFormat.depthBits || srcAngleFormat.stencilBits);
233 ASSERT(srcAngleFormat.pixelReadFunction && pixelWriteFunction);
238 ASSERT(srcAngleFormat.pixelBytes <= sizeof(depthStencilData));
247 psrc + d * src2DImageSize + r * srcRowPitch + c * srcAngleFormat.pixelBytes;
252 srcAngleFormat.pixelReadFunction(sourcePixelData, sourcePixelReadData);
1733 const angle::Format &srcAngleFormat = angle::Format::Get(srcAngleFormatId);
1750 srcAngleFormat, sourceRowPitch, sourceDepthPitch,
1759 ANGLE_TRY(setPerSliceSubImage(context, 0, mtlRegion, formatInfo, type, srcAngleFormat,
/external/angle/src/libANGLE/renderer/vulkan/
DTextureVk.cpp139 const angle::Format &srcAngleFormat = srcImage.getActualFormat(); in CanCopyWithTransferForCopyTexture() local
142 const bool srcIsBGRA = srcAngleFormat.isBGRA(); in CanCopyWithTransferForCopyTexture()
143 const bool srcHasR8 = srcAngleFormat.redBits == 8; in CanCopyWithTransferForCopyTexture()
144 const bool srcHasG8 = srcAngleFormat.greenBits == 8; in CanCopyWithTransferForCopyTexture()
145 const bool srcHasB8 = srcAngleFormat.blueBits == 8; in CanCopyWithTransferForCopyTexture()
146 const bool srcHasA8 = srcAngleFormat.alphaBits == 8; in CanCopyWithTransferForCopyTexture()
147 const bool srcIsSigned = srcAngleFormat.isSnorm() || srcAngleFormat.isSint(); in CanCopyWithTransferForCopyTexture()