X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcore_video.t;h=81001ef086b7ca175dab1b82279cbddcc904986e;hb=b3cdeb39a431b026168c4060bf74001fcee07493;hp=f9a132efd20e43a0872a075a1f387a4d38f737e7;hpb=7b7e80171a75879620d43efd52a2cf1ab3810f2b;p=sdlgit%2FSDL_perl.git diff --git a/t/core_video.t b/t/core_video.t index f9a132e..81001ef 100644 --- a/t/core_video.t +++ b/t/core_video.t @@ -9,7 +9,7 @@ use Data::Dumper; use Test::More; use SDL::Rect; -plan ( tests => 19 ); +plan ( tests => 21 ); use_ok( 'SDL::Video' ); @@ -28,17 +28,19 @@ my @done = set_palette set_gamma set_gamma_ramp + map_RGB + map_RGBA /; can_ok ('SDL::Video', @done); #testing get_video_surface -SDL::Init(SDL_INIT_VIDEO); +SDL::init(SDL_INIT_VIDEO); my $display = SDL::Video::set_video_mode(640,480,32, SDL_SWSURFACE ); if(!$display){ - plan skip_all => 'Couldn\'t set video mode: '. SDL::GetError(); + plan skip_all => 'Couldn\'t set video mode: '. SDL::geterror(); } #diag('Testing SDL::Video'); @@ -90,7 +92,7 @@ for(my $i=0;$i<256;$i++){ my $hwdisplay = SDL::Video::set_video_mode(640,480,8, SDL_HWSURFACE ); if(!$hwdisplay){ - plan skip_all => 'Couldn\'t set video mode: '. SDL::GetError(); + plan skip_all => 'Couldn\'t set video mode: '. SDL::geterror(); } $value = SDL::Video::set_colors($hwdisplay, 0); @@ -109,13 +111,11 @@ $value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0, @b_w_col is( $value , 1, '[set_palette] returns 1' ); - - +is( SDL::Video::map_RGB($hwdisplay->format, 10, 10 ,10) > 0, 1, '[map_RGB] maps correctly to 8-bit surface'); +is( SDL::Video::map_RGBA($hwdisplay->format, 10, 10 ,10, 10) > 0, 1, '[map_RGBA] maps correctly to 8-bit surface'); my @left = qw/ get_gamma_ramp - map_RGB - map_RGBA get_RGB get_RGBA create_RGB_surface_from