X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcore_video.t;h=ec81d9741603519b244f2b61f7549cb0391c2843;hb=d817c64cf4e647cad62e7ebc3e09e88642901d9e;hp=24db4de3401471fc4ecccc94bb1312abc620c350;hpb=218b54717ada03b6fee9b1ef7e441795aa20331f;p=sdlgit%2FSDL_perl.git diff --git a/t/core_video.t b/t/core_video.t index 24db4de..ec81d97 100644 --- a/t/core_video.t +++ b/t/core_video.t @@ -6,8 +6,9 @@ use SDL::Config; use Devel::Peek; use Data::Dumper; use Test::More; +use SDL::Rect; -plan ( tests => 7 ); +plan ( tests => 9 ); use_ok( 'SDL::Video' ); @@ -16,7 +17,10 @@ can_ok ('SDL::Video', qw/ get_video_info video_driver_name list_modes + set_video_mode video_mode_ok + update_rect + update_rects /); #testing get_video_surface @@ -40,11 +44,26 @@ is( ref( SDL::Video::list_modes( $display->format , SDL_SWSURFACE )), 'ARRAY', ' cmp_ok(SDL::Video::video_mode_ok( 100, 100, 16, SDL_SWSURFACE), '>=', 0, "[video_mode_ok] Checking if an integer was return"); +isa_ok(SDL::Video::set_video_mode( 100, 100 ,16, SDL_SWSURFACE), 'SDL::Surface', '[set_video_more] Checking if we get a surface ref back'); + + + +#TODO: Write to surface and check inf pixel in that area got updated. + +SDL::Video::update_rect($display, 0, 0, 0, 0); + +#TODO: Write to surface and check inf pixel in that area got updated. +SDL::Video::update_rects($display, SDL::Rect->new(0, 10, 20, 20)); + pass "Are we still alive?"; =skip - video_mode_ok + get_video_surface + get_video_info + video_driver_name + list_modes set_video_mode + video_mode_ok update_rect update_rects flip