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