File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libvisual/tests/video_test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ namespace
3434 actual->blit (source, 0 , 0 , true );
3535
3636 for (int y = 0 ; y < test_height; y++) {
37- auto source_pixel = static_cast <uint8_t const *> (source->get_pixel_ptr (y, 0 ));
38- auto target_pixel = static_cast <uint8_t const *> (target->get_pixel_ptr (y, 0 ));
39- auto actual_pixel = static_cast <uint8_t const *> (actual->get_pixel_ptr (y, 0 ));
37+ auto source_pixel = static_cast <uint8_t const *> (source->get_pixel_ptr (0 , y ));
38+ auto target_pixel = static_cast <uint8_t const *> (target->get_pixel_ptr (0 , y ));
39+ auto actual_pixel = static_cast <uint8_t const *> (actual->get_pixel_ptr (0 , y ));
4040
4141 for (int x = 0 ; x < test_width; x++) {
4242 LV_TEST_ASSERT (actual_pixel[3 ] == target_pixel[3 ]);
You can’t perform that action at this time.
0 commit comments