# File lib/ruby-sdl-ffi/gfx/rotozoom.rb, line 59 def self.rotozoomSurfaceSize( width, height, angle, zoom ) w = FFI::MemoryPointer.new( :int ) h = FFI::MemoryPointer.new( :int ) __rotozoomSurfaceSize( width, height, angle, zoom, w, h ) return [w.get_int(0), h.get_int(0)] end