XS for redtable done for set_gamma_ramp
[sdlgit/SDL_perl.git] / t / core_video.t
index 24a658e..3159925 100644 (file)
@@ -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,10 @@ my @done =
        update_rects
        flip
        set_colors
+       set_palette
+       set_gamma
        /;
+
 can_ok ('SDL::Video', @done); 
 
 #testing get_video_surface
@@ -69,6 +72,16 @@ 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|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;
 
 for(my $i=0;$i<256;$i++){
@@ -83,15 +96,23 @@ 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|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'  );
+
+
+
+
 
 my @left = qw/
-       set_palette
-       set_gamma
        get_gamma_ramp
        set_gmmma_ramp
        map_RGB
@@ -133,4 +154,4 @@ TODO:
        diag  $why;
 
 
-pass 'Are we still alive? Checkign for segfaults';
+pass 'Are we still alive? Checking for segfaults';