Finished set_gamma_ramp! 30% for SDL::Video
[sdlgit/SDL_perl.git] / t / core_video.t
index 3159925..f9a132e 100644 (file)
@@ -27,6 +27,7 @@ my @done =
        set_colors
        set_palette
        set_gamma
+       set_gamma_ramp
        /;
 
 can_ok ('SDL::Video', @done); 
@@ -76,9 +77,8 @@ $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';
+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 ';
 
@@ -114,7 +114,6 @@ is(  $value , 1,  '[set_palette] returns 1'  );
 
 my @left = qw/
        get_gamma_ramp
-       set_gmmma_ramp
        map_RGB
        map_RGBA
        get_RGB