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