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.h479 const angle::Format &srcAngleFormat,
510 const angle::Format &srcAngleFormat,
517 const angle::Format &srcAngleFormat,
522 const angle::Format &srcAngleFormat,
526 const angle::Format &srcAngleFormat,
537 const angle::Format &srcAngleFormat);
542 const angle::Format &srcAngleFormat);
548 const angle::Format &srcAngleFormat,
554 const angle::Format &srcAngleFormat,
601 const angle::Format &srcAngleFormat,
[all …]
Dmtl_render_utils.mm1019 const angle::Format &srcAngleFormat,
1022 int index = GetPixelTypeIndex(srcAngleFormat);
1028 const angle::Format &srcAngleFormat,
1044 return blitColorWithDraw(context, cmdEncoder, srcAngleFormat, params);
1049 const angle::Format &srcAngleFormat,
1053 if (!srcAngleFormat.isInt() && dstAngleFormat.isUint())
1057 ASSERT(srcAngleFormat.isSint() == dstAngleFormat.isSint() &&
1058 srcAngleFormat.isUint() == dstAngleFormat.isUint());
1059 return blitColorWithDraw(context, cmdEncoder, srcAngleFormat, params);
1165 const angle::Format &srcAngleFormat,
[all …]
DTextureMtl.mm179 const angle::Format &srcAngleFormat,
189 if (srcAngleFormat.id == dstAngleFormat.id)
208 ASSERT(srcAngleFormat.depthBits || srcAngleFormat.stencilBits);
209 ASSERT(srcAngleFormat.pixelReadFunction && pixelWriteFunction);
214 ASSERT(srcAngleFormat.pixelBytes <= sizeof(depthStencilData));
223 psrc + d * src2DImageSize + r * srcRowPitch + c * srcAngleFormat.pixelBytes;
228 srcAngleFormat.pixelReadFunction(sourcePixelData, sourcePixelReadData);
1592 const angle::Format &srcAngleFormat = angle::Format::Get(srcAngleFormatId);
1609 srcAngleFormat, sourceRowPitch, sourceDepthPitch,
1618 ANGLE_TRY(setPerSliceSubImage(context, 0, mtlRegion, formatInfo, type, srcAngleFormat,
/external/angle/src/libANGLE/renderer/vulkan/
DTextureVk.cpp123 const angle::Format &srcAngleFormat = srcFormat.actualImageFormat(); in CanCopyWithTransferForCopyTexture() local
126 const bool srcIsBGRA = srcAngleFormat.isBGRA(); in CanCopyWithTransferForCopyTexture()
127 const bool srcHasR8 = srcAngleFormat.redBits == 8; in CanCopyWithTransferForCopyTexture()
128 const bool srcHasG8 = srcAngleFormat.greenBits == 8; in CanCopyWithTransferForCopyTexture()
129 const bool srcHasB8 = srcAngleFormat.blueBits == 8; in CanCopyWithTransferForCopyTexture()
130 const bool srcHasA8 = srcAngleFormat.alphaBits == 8; in CanCopyWithTransferForCopyTexture()
131 const bool srcIsSigned = srcAngleFormat.isSnorm() || srcAngleFormat.isSint(); in CanCopyWithTransferForCopyTexture()