# File lib/ruby-sdl-ffi/ttf.rb, line 129
    def self.SizeText( font, text )
      w = FFI::Buffer.new( :int )
      h = FFI::Buffer.new( :int )
      __SizeText( font, text, w, h )
      return [w.get_int(0),h.get_int(0)]
    end