Added CreateRGBSurfaceFrom as an new constructor of SDL::Surface. Need to test it
[sdlgit/SDL_perl.git] / t / core_video.t
index 81001ef..dcce70b 100644 (file)
@@ -9,7 +9,7 @@ use Data::Dumper;
 use Test::More;
 use SDL::Rect;
 
-plan ( tests => 21 );
+plan ( tests => 22 );
 
 use_ok( 'SDL::Video' ); 
 
@@ -30,6 +30,8 @@ my @done =
        set_gamma_ramp
        map_RGB
        map_RGBA
+       unlock_surface
+       lock_surface    
        /;
 
 can_ok ('SDL::Video', @done); 
@@ -40,7 +42,7 @@ 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::get_error();
     }
 
 #diag('Testing SDL::Video');
@@ -92,7 +94,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::get_error();
     }
 
 $value = SDL::Video::set_colors($hwdisplay, 0);
@@ -110,6 +112,9 @@ $value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|SDL_PHYSPAL, 0, @b_w_col
 
 is(  $value , 1,  '[set_palette] returns 1'  );
 
+$value = SDL::Video::lock_surface($hwdisplay); pass '[lock_surface] ran returned: '.$value;
+
+SDL::Video::unlock_surface($hwdisplay); pass '[unlock_surface] ran';
 
 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');
@@ -118,9 +123,6 @@ my @left = qw/
        get_gamma_ramp
        get_RGB
        get_RGBA
-       create_RGB_surface_from
-       lock_surface
-       unlock_surface
        convert_surface
        display_format
        display_format_alpha