Lines Matching refs:result
222 std::ostringstream result;
224 result << ((param.testMode == TEST_MODE_COHERENT && !param.coherentOperations) ? "barrier_" : "");
225 result << "color_attachments_" << param.colorAttachmentsCount;
226 result << "_" << de::toLower(getBlendOverlapEXTStr(param.overlap).toString().substr(3));
227 result << (!param.premultipliedSrcColor ? "_nonpremultipliedsrc" : "");
228 result << (!param.premultipliedDstColor ? "_nonpremultiplieddst" : "");
229 result << "_" << param.testNumber;
231 result << "_r8g8b8a8_unorm";
232 return result.str();
493 // result with that of the RGB color <clum>.
751 Vec4 result = Vec4(0.0f, 0.0f, 0.0f, 1.0f);
789 result.x() = fSrcDst.x() * p.x() + xyz.y() * srcColor.x() * p.y() + xyz.z() * dstColor.x() * p.z();
790 result.y() = fSrcDst.y() * p.x() + xyz.y() * srcColor.y() * p.y() + xyz.z() * dstColor.y() * p.z();
791 result.z() = fSrcDst.z() * p.x() + xyz.y() * srcColor.z() * p.y() + xyz.z() * dstColor.z() * p.z();
792 result.w() = xyz.x() * p.x() + xyz.y() * p.y() + xyz.z() * p.z();
811 result = additionalRGBBlendOperations(op, src, dst);
817 return result;
1163 // Skip ill-formed colors, because the spec says the result is undefined.
1512 de::MovePtr<tcu::TextureLevel> result = vkt::pipeline::readColorAttachment(vk, vkDevice, queue, queueFamilyIndex, allocator, *m_colorImages[colorAtt], m_colorFormat, m_renderSize);
1521 result->getAccess(),
1871 // Skip ill-formed colors, because the spec says the result is undefined.
1903 // Only clear in the first draw, for the second draw the destination color is the result of the first draw's blend.
2185 de::MovePtr<tcu::TextureLevel> result = vkt::pipeline::readColorAttachment(vk, vkDevice, queue, queueFamilyIndex, allocator, *m_colorImage, m_colorFormat, m_renderSize);
2194 result->getAccess(),