소스 검색

Merge pull request #77 from GWRon/freetype_charsize

[Freetype.mod] Define FT_Set_Char_Size()
Brucey 5 달 전
부모
커밋
6bb964ba5e
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      freetype.mod/freetype.bmx

+ 2 - 0
freetype.mod/freetype.bmx

@@ -104,6 +104,8 @@ Function FT_Done_Glyph( ft_glyph:Byte Ptr )
 Function FT_New_Face( ft_lib:Byte Ptr,arg$z,faceIndex,ft_face:Byte Ptr Ptr )
 Function FT_New_Face( ft_lib:Byte Ptr,arg$z,faceIndex,ft_face:Byte Ptr Ptr )
 Function FT_New_Memory_Face( ft_lib:Byte Ptr,buf:Byte Ptr,size,faceIndex,ft_face:Byte Ptr Ptr )
 Function FT_New_Memory_Face( ft_lib:Byte Ptr,buf:Byte Ptr,size,faceIndex,ft_face:Byte Ptr Ptr )
 
 
+Function FT_Set_Char_Size( ft_face:Byte Ptr, width:LongInt, height:LongInt, horz_resolution:UInt, vert_resolution:UInt)
+
 Function FT_Set_Pixel_Sizes( ft_face:Byte Ptr,width,height )
 Function FT_Set_Pixel_Sizes( ft_face:Byte Ptr,width,height )
 Function FT_Get_Char_Index( ft_face:Byte Ptr,index )
 Function FT_Get_Char_Index( ft_face:Byte Ptr,index )
 Function FT_Set_Charmap( ft_face:Byte Ptr,charmap )
 Function FT_Set_Charmap( ft_face:Byte Ptr,charmap )