Lines Matching defs:image
75 //! Check that a certain rectangle in the image contains no black pixels.
76 //! Returns true if an image successfully passess the verification.
77 bool verifyResult (tcu::TestLog& log, const tcu::ConstPixelBufferAccess image)
79 const int startX = static_cast<int>(0.15f * (float)image.getWidth());
80 const int endX = static_cast<int>(0.85f * (float)image.getWidth());
81 const int startY = static_cast<int>(0.15f * (float)image.getHeight());
82 const int endY = static_cast<int>(0.85f * (float)image.getHeight());
87 const tcu::Vec4 pixel = image.getPixel(x, y);
362 // Color output buffer: image will be copied here for verification
394 // Change color attachment image layout
432 // Log the result image.
441 log << tcu::TestLog::Image("color0", "Rendered image", imagePixelAccess)