# File lib/ruby-sdl-ffi/gfx/rotozoom.rb, line 75 def self.rotozoomSurfaceSizeXY( width, height, angle, zoomx, zoomy ) w = FFI::MemoryPointer.new( :int ) h = FFI::MemoryPointer.new( :int ) __rotozoomSurfaceSizeXY( width, height, angle, zoomx, zoomy, w, h ) return [w.get_int(0), h.get_int(0)] end