X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcore_video.t;h=f9a132efd20e43a0872a075a1f387a4d38f737e7;hb=7b7e80171a75879620d43efd52a2cf1ab3810f2b;hp=17b15313d3a48391b142e118b9a41f4864e2c68d;hpb=0a01cb9eceb7b4a1cfb27f19fe2ba4fff13963f9;p=sdlgit%2FSDL_perl.git diff --git a/t/core_video.t b/t/core_video.t index 17b1531..f9a132e 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 => 14 ); +plan ( tests => 19 ); use_ok( 'SDL::Video' ); @@ -25,7 +25,11 @@ my @done = update_rects flip set_colors + set_palette + set_gamma + set_gamma_ramp /; + can_ok ('SDL::Video', @done); #testing get_video_surface @@ -66,26 +70,50 @@ SDL::Video::update_rects($display, SDL::Rect->new(0, 10, 20, 20)); my $value = SDL::Video::flip($display); is( ($value == 0) || ($value == -1), 1, '[flip] returns 0 or -1' ); -$value = SDL::Video::set_colors($display, 0); -is( $value , 0, '[set_colors] returns 0' ); +$value = SDL::Video::set_colors($display, 0, SDL::Color->new(0,0,0)); +is( $value , 0, '[set_colors] returns 0 trying to write to 32 bit display' ); + +$value = SDL::Video::set_palette($display, SDL_LOGPAL|SDL_PHYSPAL, 0); + +is( $value , 0, '[set_palette] returns 0 trying to write to 32 bit surface' ); + +my $zero = [0,0,0,0]; +SDL::Video::set_gamma_ramp($zero, $zero, $zero); pass '[set_gamma_ramp] ran'; + +SDL::Video::set_gamma( 1.0, 1.0, 1.0 ); pass '[set_gamma] ran '; my @b_w_colors; for(my $i=0;$i<256;$i++){ $b_w_colors[$i] = SDL::Color->new($i,$i,$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(); + } + +$value = SDL::Video::set_colors($hwdisplay, 0); +is( $value , 0, '[set_colors] returns 0 trying to send empty colors to 8 bit surface' ); + +$value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0); + +is( $value , 0, '[set_palette] returns 0 trying to send empty colors to 8 bit surface' ); + + +$value = SDL::Video::set_colors($hwdisplay, 0, @b_w_colors); +is( $value , 1, '[set_colors] returns '.$value ); + +$value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0, @b_w_colors ); + +is( $value , 1, '[set_palette] returns 1' ); + -$value = SDL::Video::set_colors($display, 0, @b_w_colors); -is( $value , 0, '[set_colors] returns '.$value ); -#TODO: check actual color in palette with get_palette my @left = qw/ - set_palette - set_gamma get_gamma_ramp - set_gmmma_ramp map_RGB map_RGBA get_RGB @@ -125,4 +153,4 @@ TODO: diag $why; -pass 'Are we still alive? Checkign for segfaults'; +pass 'Are we still alive? Checking for segfaults';