Lines Matching refs:result
1063 std::vector<std::vector<deUint8>> result;
1064 result.reserve(6u);
1066 result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, paddingPattern, patternSize)); // Not actually used.
1067 result.push_back(createSingleBindingVertexData<PaddingOnes>(coords, dataOffset, trailingPadding, paddingPattern, patternSize)); // Binding 1 contains location=0 as PaddingOnes.
1068 result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, paddingPattern, patternSize)); // Not actually used.
1069 result.push_back(createSingleBindingVertexData<CoordsData>(coords, dataOffset, trailingPadding, paddingPattern, patternSize)); // Binding 3 contains location=1 as CoordsData.
1070 result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, paddingPattern, patternSize)); // Not actually used.
1071 result.push_back(createSingleBindingVertexData<OneZeroPadding>(coords, dataOffset, trailingPadding, paddingPattern, patternSize)); // Binding 5 contains location=2 as OneZeroPadding.
1073 return result;
1418 using ColorVerificator = std::function<bool(const tcu::ConstPixelBufferAccess&/*result*/, const tcu::ConstPixelBufferAccess&/*reference*/, const tcu::PixelBufferAccess&/*errorMask*/)>;
1652 bool verifyTopLeftCorner (const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask, bool partialAlpha)
1655 const auto resultColor = result.getPixel(0, 0);
1673 bool verifyTopLeftCornerExactly (const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask)
1675 return verifyTopLeftCorner(result, reference, errorMask, false/*partialAlpha*/);
1678 bool verifyTopLeftCornerWithPartialAlpha (const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& reference, const tcu::PixelBufferAccess& errorMask)
1680 return verifyTopLeftCorner(result, reference, errorMask, true/*partialAlpha*/);
3124 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, colorImageInfo.format, colorImageInfo.imageType, colorImageInfo.tiling, colorImageInfo.usage, colorImageInfo.flags, &formatProps);
3126 if (result != vk::VK_SUCCESS)
3240 auto result = vki.getPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV(physicalDevice, &combinationCount, nullptr);
3241 if (result != vk::VK_SUCCESS || combinationCount == 0U)
3246 result = vki.getPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV(physicalDevice, &combinationCount, combinations.data());
3247 if (result != vk::VK_SUCCESS)
3869 void logErrors(tcu::TestLog& log, const std::string& setName, const std::string& setDesc, const tcu::ConstPixelBufferAccess& result, const tcu::ConstPixelBufferAccess& errorMask)
3872 << tcu::TestLog::Image(setName + "Result", "Result image", result)
4581 const auto result = vki.getPhysicalDeviceImageFormatProperties(physicalDevice, dsImageInfo.format, dsImageInfo.imageType, dsImageInfo.tiling, dsImageInfo.usage, dsImageInfo.flags, &formatProps);
4584 if (result != vk::VK_SUCCESS)
4774 // When using extra line restarts, insert a primitive restart index in the middle, which will result in the
6160 // Read result image aspects from the last used framebuffer.
6290 // Draws with the test disabled should always result in kFramebufferHeight * kFramebufferWidth invocations.
6291 // Draws with the test enabled should result in at least 1 invocation, maybe more.
6346 // Draws with the test disabled should always result in kFramebufferHeight * kFramebufferWidth invocations.
6347 // Draws with the test enabled should result in at least 1 invocation, maybe more.
6408 deUint8 result = storedValue;
6413 case vk::VK_STENCIL_OP_ZERO: result = 0; break;
6414 case vk::VK_STENCIL_OP_REPLACE: result = referenceValue; break;
6415 case vk::VK_STENCIL_OP_INCREMENT_AND_CLAMP: result = ((result == max) ? result : static_cast<deUint8>(result + 1)); break;
6416 case vk::VK_STENCIL_OP_DECREMENT_AND_CLAMP: result = ((result == min) ? result : static_cast<deUint8>(result - 1)); break;
6417 case vk::VK_STENCIL_OP_INVERT: result = static_cast<deUint8>(~result); break;
6418 case vk::VK_STENCIL_OP_INCREMENT_AND_WRAP: result = ((result == max) ? min : static_cast<deUint8>(result + 1)); break;
6419 case vk::VK_STENCIL_OP_DECREMENT_AND_WRAP: result = ((result == min) ? max : static_cast<deUint8>(result - 1)); break;
6423 return result;
6699 // Skip two-draws variants as this will use dynamic logic op and force UNORM color attachments, which would result in illegal operations.
6779 // Skip two-draws variants as this will use dynamic logic op and force UNORM color attachments, which would result in illegal operations.
6908 // Expected result.
7231 // 2 scissors, reversed dynamic viewports that should result in no drawing taking place.
8278 // Single-sampling at the pixel center should not cover this, but overestimation should result in coverage.
8296 // Single-sampling at the pixel center should cover this, but underestimation should result in lack of coverage.
8757 const bool globalPass = (wouldPass && !depthFail); // Global result of the stencil+depth test.
8801 // Set operations so only the appropriate operation for this case gives the right result.