X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcore_video.t;h=3159925278d5015221f1855e3f28a0119f3f16f5;hb=8b7c3ac88365da7f48ecf38e313ccbb9db13161c;hp=b7cecea792cc774a2ab078559f140c59fda31640;hpb=97e6904f18ed81813209b69c8eca0780b49f57b6;p=sdlgit%2FSDL_perl.git diff --git a/t/core_video.t b/t/core_video.t index b7cecea..3159925 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 => 17 ); +plan ( tests => 19 ); use_ok( 'SDL::Video' ); @@ -26,6 +26,7 @@ my @done = flip set_colors set_palette + set_gamma /; can_ok ('SDL::Video', @done); @@ -71,11 +72,15 @@ is( ($value == 0) || ($value == -1), 1, '[flip] returns 0 or -1' ); $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|0x02, 0); +$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 @redtable = (0,0,0,0); + +SDL::Video::set_gamma_ramp( \@redtable , [0,1,2,3], [2,3,4,5]); pass '[set_gamma_ramp] ran'; +SDL::Video::set_gamma( 1.0, 1.0, 1.0 ); pass '[set_gamma] ran '; my @b_w_colors; @@ -91,7 +96,7 @@ if(!$hwdisplay){ $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|0x02, 0); +$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' ); @@ -99,7 +104,7 @@ is( $value , 0, '[set_palette] returns 0 trying to send empty colors to 8 bit $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|0x02, 0, @b_w_colors ); +$value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0, @b_w_colors ); is( $value , 1, '[set_palette] returns 1' ); @@ -108,7 +113,6 @@ is( $value , 1, '[set_palette] returns 1' ); my @left = qw/ - set_gamma get_gamma_ramp set_gmmma_ramp map_RGB