Searched refs:srcAngleFormat (Results 1 – 4 of 4) sorted by relevance
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_render_utils.h | 479 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 …]
|
D | mtl_render_utils.mm | 1019 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 …]
|
D | TextureMtl.mm | 179 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/ |
D | TextureVk.cpp | 123 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()
|