From: Kartik Thakore Date: Sun, 25 Oct 2009 01:26:41 +0000 (-0400) Subject: Added update_rects X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=sdlgit%2FSDL_perl.git;a=commitdiff_plain;h=eaf32d63cd5d036a165cbbcb1200bca441d2aa84 Added update_rects --- diff --git a/src/Core/Video.xs b/src/Core/Video.xs index 0a4569d..a7a6b34 100644 --- a/src/Core/Video.xs +++ b/src/Core/Video.xs @@ -87,4 +87,29 @@ video_video_mode_ok ( width, height, bpp, flags ) OUTPUT: RETVAL +void +video_update_rect ( surface, x, y, w ,h ) + SDL_Surface *surface + int x + int y + int w + int h + CODE: + SDL_UpdateRect(surface,x,y,w,h); + +void +video_update_rects ( surface, ... ) + SDL_Surface *surface + CODE: + SDL_Rect *rects; + int num_rects,i; + if ( items < 2 ) return; + num_rects = items - 1; + rects = (SDL_Rect *)safemalloc(sizeof(SDL_Rect)*items); + for(i=0;i 7 ); +plan ( tests => 8 ); use_ok( 'SDL::Video' ); @@ -17,6 +18,8 @@ can_ok ('SDL::Video', qw/ video_driver_name list_modes video_mode_ok + update_rect + update_rects /); #testing get_video_surface @@ -40,6 +43,10 @@ is( ref( SDL::Video::list_modes( $display->format , SDL_SWSURFACE )), 'ARRAY', ' cmp_ok(SDL::Video::video_mode_ok( 100, 100, 16, SDL_SWSURFACE), '>=', 0, "[video_mode_ok] Checking if an integer was return"); +SDL::Video::update_rect($display, 0, 0, 0, 0); + +SDL::Video::update_rects($display, SDL::Rect->new(0, 10, 20, 20)); + pass "Are we still alive?"; =skip