Lines Matching refs:frame2
256 void verifyNeighboringFrames (const FrameTimes& frame1, const FrameTimes& frame2, tcu::ResultCollec… in verifyNeighboringFrames() argument
259 …check_lt(result, frame1.swapBufferBeginNs, frame2.swapBufferBeginNs, "Swap begin times not monoton… in verifyNeighboringFrames()
260 check_lt(result, frame1.latch, frame2.latch, "Latch times not monotonic."); in verifyNeighboringFrames()
261 …check_lt(result, frame1.lastCompositionStart, frame2.latch, "Old buffer composited after new buffe… in verifyNeighboringFrames()
262 …check_lt(result, frame1.lastCompositionStart, frame2.firstCompositionStart, "Composition times ove… in verifyNeighboringFrames()
263 check_lt(result, frame1.dequeueReady, frame2.dequeueReady, "Dequeue ready times not monotonic."); in verifyNeighboringFrames()
267 …check_le(result, frame1.renderingComplete, frame2.renderingComplete, "Rendering complete times not… in verifyNeighboringFrames()
269 …if (timestampValid(frame1.firstCompositionGpuFinished) && timestampValid(frame2.firstCompositionGp… in verifyNeighboringFrames()
270 …check_lt(result, frame1.firstCompositionGpuFinished, frame2.firstCompositionGpuFinished, "Composit… in verifyNeighboringFrames()
272 if (timestampValid(frame1.displayPresent) && timestampValid(frame2.displayPresent)) in verifyNeighboringFrames()
273 …check_lt(result, frame1.displayPresent, frame2.displayPresent, "Display present times not monotoni… in verifyNeighboringFrames()