• Home
  • Raw
  • Download

Lines Matching refs:UpdateRect

466   VideoFrame::UpdateRect a = {0, 0, 100, 200};  in TEST()
467 VideoFrame::UpdateRect b = {0, 0, 100, 200}; in TEST()
468 VideoFrame::UpdateRect c = {1, 0, 100, 200}; in TEST()
469 VideoFrame::UpdateRect d = {0, 1, 100, 200}; in TEST()
476 VideoFrame::UpdateRect a = {0, 0, 0, 0}; in TEST()
477 VideoFrame::UpdateRect b = {0, 0, 100, 200}; in TEST()
478 VideoFrame::UpdateRect c = {1, 100, 0, 0}; in TEST()
479 VideoFrame::UpdateRect d = {1, 100, 100, 200}; in TEST()
487 VideoFrame::UpdateRect a = {0, 0, 10, 20}; in TEST()
488 VideoFrame::UpdateRect b = {100, 200, 10, 20}; in TEST()
490 EXPECT_EQ(a, VideoFrame::UpdateRect({0, 0, 110, 220})); in TEST()
494 VideoFrame::UpdateRect a = {0, 0, 10, 10}; in TEST()
495 VideoFrame::UpdateRect b = {5, 5, 30, 20}; in TEST()
497 EXPECT_EQ(a, VideoFrame::UpdateRect({0, 0, 35, 25})); in TEST()
501 VideoFrame::UpdateRect a = {0, 0, 100, 100}; in TEST()
502 VideoFrame::UpdateRect b = {5, 5, 30, 20}; in TEST()
504 EXPECT_EQ(a, VideoFrame::UpdateRect({0, 0, 100, 100})); in TEST()
508 VideoFrame::UpdateRect a = {0, 0, 10, 20}; in TEST()
509 VideoFrame::UpdateRect b = {100, 200, 10, 20}; in TEST()
511 EXPECT_EQ(a, VideoFrame::UpdateRect({0, 0, 0, 0})); in TEST()
515 VideoFrame::UpdateRect a = {0, 0, 10, 10}; in TEST()
516 VideoFrame::UpdateRect b = {5, 5, 30, 20}; in TEST()
518 EXPECT_EQ(a, VideoFrame::UpdateRect({5, 5, 5, 5})); in TEST()
522 VideoFrame::UpdateRect a = {0, 0, 100, 100}; in TEST()
523 VideoFrame::UpdateRect b = {5, 5, 30, 20}; in TEST()
525 EXPECT_EQ(a, VideoFrame::UpdateRect({5, 5, 30, 20})); in TEST()
531 VideoFrame::UpdateRect a = {100, 50, 100, 200}; in TEST()
532 VideoFrame::UpdateRect scaled = in TEST()
534 EXPECT_EQ(scaled, VideoFrame::UpdateRect({100, 50, 100, 200})); in TEST()
540 VideoFrame::UpdateRect a = {100, 50, 100, 200}; in TEST()
541 VideoFrame::UpdateRect scaled = a.ScaleWithFrame( in TEST()
543 EXPECT_EQ(scaled, VideoFrame::UpdateRect({90, 40, 100, 200})); in TEST()
549 VideoFrame::UpdateRect a = {100, 50, 100, 200}; in TEST()
550 VideoFrame::UpdateRect scaled = a.ScaleWithFrame( in TEST()
552 EXPECT_EQ(scaled, VideoFrame::UpdateRect({94, 44, 102, 202})); in TEST()
558 VideoFrame::UpdateRect a = {100, 60, 100, 200}; in TEST()
559 VideoFrame::UpdateRect scaled = a.ScaleWithFrame( in TEST()
562 EXPECT_EQ(scaled, VideoFrame::UpdateRect({48, 28, 54, 104})); in TEST()
568 VideoFrame::UpdateRect a = {100, 60, 100, 200}; in TEST()
569 VideoFrame::UpdateRect scaled = a.ScaleWithFrame( in TEST()
572 EXPECT_EQ(scaled, VideoFrame::UpdateRect({0, 0, 0, 0})); in TEST()
578 VideoFrame::UpdateRect a = {600, 400, 10, 10}; in TEST()
579 VideoFrame::UpdateRect scaled = a.ScaleWithFrame( in TEST()
582 EXPECT_EQ(scaled, VideoFrame::UpdateRect({0, 0, 0, 0})); in TEST()
588 VideoFrame::UpdateRect a = {300, 200, 100, 100}; in TEST()
589 VideoFrame::UpdateRect scaled = a.ScaleWithFrame( in TEST()
592 EXPECT_EQ(scaled, VideoFrame::UpdateRect({0, 0, 10, 10})); in TEST()
598 VideoFrame::UpdateRect a = {100, 60, 100, 200}; in TEST()
599 VideoFrame::UpdateRect scaled = in TEST()
604 EXPECT_EQ(scaled, VideoFrame::UpdateRect({42, 22, 56, 106})); in TEST()