Lines Matching refs:result

351 			m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Unexpected query result");
1411 << "Verifying render result."
1956 << "Verifying render result:"
1973 const deUint8 result = scanRow(viewportSurface.getAccess(),
1982 if ((result & SCANRESULT_NUM_LINES_OK_BIT) == 0)
1984 if ((result & SCANRESULT_LINE_CONT_OK_BIT) == 0)
1986 if ((result & SCANRESULT_LINE_CONT_WARN_BIT) != 0)
1991 else if ((result & SCANRESULT_LINE_WIDTH_OK_BIT) == 0)
1998 else if ((result & SCANRESULT_LINE_WIDTH_ERR_BIT) == 0 &&
1999 (result & SCANRESULT_LINE_WIDTH_WARN_BIT) != 0)
2011 const deUint8 result = scanColumn(viewportSurface.getAccess(),
2020 if ((result & SCANRESULT_NUM_LINES_OK_BIT) == 0)
2022 if ((result & SCANRESULT_LINE_CONT_OK_BIT) == 0)
2024 if ((result & SCANRESULT_LINE_CONT_WARN_BIT) != 0)
2029 else if ((result & SCANRESULT_LINE_WIDTH_OK_BIT) == 0)
2036 else if ((result & SCANRESULT_LINE_WIDTH_ERR_BIT) == 0 &&
2037 (result & SCANRESULT_LINE_WIDTH_WARN_BIT) != 0)
2146 deUint8 result = 0;
2149 result |= (deUint8)SCANRESULT_NUM_LINES_OK_BIT;
2152 result |= (deUint8)SCANRESULT_LINE_CONT_OK_BIT;
2154 result |= lineContinuityRes;
2157 result |= (deUint8)SCANRESULT_LINE_WIDTH_OK_BIT;
2159 result |= lineWidthRes;
2161 return result;
2169 deUint8 result = 0;
2172 result |= (deUint8)SCANRESULT_NUM_LINES_OK_BIT;
2175 result |= (deUint8)SCANRESULT_LINE_CONT_OK_BIT;
2177 result |= lineContinuityRes;
2180 result |= (deUint8)SCANRESULT_LINE_WIDTH_OK_BIT;
2182 result |= lineWidthRes;
2184 return result;
2936 << "Verifying render result:"
3091 // find rasterized point in the result
3681 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got unexpected blit result");
3697 << "Verifying blit result"
4286 bool verifyImageResultValid (const tcu::PixelBufferAccess& result);
4621 bool ClearCase::verifyImageResultValid (const tcu::PixelBufferAccess& result)
4623 tcu::Surface errorMask (result.getWidth(), result.getHeight());
4628 for (int y = 0; y < result.getHeight(); ++y)
4629 for (int x = 0; x < result.getWidth(); ++x)
4631 const tcu::IVec4 pixel = result.getPixelInt(x, y);
4648 << tcu::TestLog::Image("ResultImage", "Result image", result)
4767 bool verifyImage (const tcu::PixelBufferAccess& result);
4816 << "Verifying rendering result."
4977 bool ViewportCallOrderCase::verifyImage (const tcu::PixelBufferAccess& result)
4979 const tcu::IVec2 insideBorder (deCeilFloatToInt32(0.25f * (float)result.getWidth()) + 1, deFloorFloatToInt32(0.5f * (float)result.getWidth()) - 1);
4980 const tcu::IVec2 outsideBorder (deFloorFloatToInt32(0.25f * (float)result.getWidth()) - 1, deCeilFloatToInt32(0.5f * (float)result.getWidth()) + 1);
4981 tcu::Surface errorMask (result.getWidth(), result.getHeight());
4986 for (int y = 0; y < result.getHeight(); ++y)
4987 for (int x = 0; x < result.getWidth(); ++x)
4994 const tcu::IVec4 pixel = result.getPixelInt(x, y);
5016 << tcu::TestLog::Image("ResultImage", "Result image", result)