예제 #1
0
 public static extern byte  FC_LoadFont(
     FC_Font_PTR font,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string filename_ttf,
     Int32 pointSize,
     SDL.SDL_Color color,
     int style);
예제 #2
0
 public static extern int  FC_GetNumCacheLevels(FC_Font_PTR font);
예제 #3
0
 public static extern void  FC_FreeFont(FC_Font_PTR font);
예제 #4
0
 public static extern byte  FC_LoadFontFromTTF(FC_Font_PTR font, IntPtr ttf, SDL.SDL_Color color);
예제 #5
0
 public static extern void  FC_SetLineSpacing(FC_Font_PTR font, int LineSpacing);
예제 #6
0
 public static extern UInt16  FC_GetMaxWidth(FC_Font_PTR font);
예제 #7
0
 public static extern UInt16  FC_GetColumnHeight(
     FC_Font_PTR font,
     UInt16 width,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #8
0
 public static extern SDL2_GPU.GPU_Rect  FC_DrawBoxAlign(
     FC_Font_PTR font, SDL2_GPU.GPU_Target_PTR dest,
     SDL2_GPU.GPU_Rect box, FC_AlignEnum align,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #9
0
 public static extern UInt16 FC_GetMaxWidth(FC_Font_PTR font);
예제 #10
0
 public static extern UInt16 FC_GetLineHeight(FC_Font_PTR font);
예제 #11
0
 public static extern byte FC_GetGlyphData(FC_Font_PTR font, FC_GlyphData_PTR result, UInt32 codepoint);
예제 #12
0
 public static extern SDL2_GPU.GPU_Image_PTR FC_GetGlyphCacheLevel(FC_Font_PTR font, int cache_level);
예제 #13
0
 public static extern SDL.SDL_Color FC_GetDefaultColor(FC_Font_PTR font);
예제 #14
0
        public static extern SDL2_GPU.GPU_Rect FC_GetCharacterOffset(
			FC_Font_PTR font,
			UInt16 position_index, int column_width, 
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string formatted_text, __arglist);
예제 #15
0
 public static extern byte  FC_SetGlyphCacheLevel(FC_Font_PTR font, int cache_level, SDL2_GPU.GPU_Image_PTR cache_texture);
예제 #16
0
 public static extern FC_GlyphData_PTR FC_SetGlyphData(FC_Font_PTR font, UInt32 codepoint, FC_GlyphData glyph_data);
예제 #17
0
 public static extern int FC_GetNumCacheLevels(FC_Font_PTR font);
예제 #18
0
 public static extern UInt16  FC_GetLineHeight(FC_Font_PTR font);
예제 #19
0
        public static extern UInt16 FC_GetPositionFromOffset(
			FC_Font_PTR font,
			float x, float y, int column_width, FC_AlignEnum align, 
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string formatted_text, __arglist);
예제 #20
0
 public static extern int  FC_GetBaseline(FC_Font_PTR font);
예제 #21
0
 public static extern int FC_GetSpacing(FC_Font_PTR font);
예제 #22
0
 public static extern UInt16  FC_GetPositionFromOffset(
     FC_Font_PTR font,
     float x, float y, int column_width, FC_AlignEnum align,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #23
0
        public static extern UInt16 FC_GetWidth(
			FC_Font_PTR font,
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string formatted_text, __arglist);
예제 #24
0
 public static extern int FC_GetBaseline(FC_Font_PTR font);
예제 #25
0
        public static extern byte FC_LoadFont(
			FC_Font_PTR font,
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string filename_ttf,
			Int32 pointSize,
			SDL.SDL_Color color,
			int style);
예제 #26
0
 public static extern void  FC_ClearFont(FC_Font_PTR font);
예제 #27
0
 public static extern byte FC_LoadFontFromTTF(FC_Font_PTR font, IntPtr ttf, SDL.SDL_Color color);
예제 #28
0
 public static extern void  FC_SetLoadingString(FC_Font_PTR font,
                                                [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
                                                string str);
예제 #29
0
 public static extern void FC_SetDefaultColor(FC_Font_PTR font, SDL.SDL_Color color);
예제 #30
0
 public static extern SDL2_GPU.GPU_Image_PTR FC_GetGlyphCacheLevel(FC_Font_PTR font, int cache_level);
예제 #31
0
 public static extern byte FC_SetGlyphCacheLevel(FC_Font_PTR font, int cache_level, SDL2_GPU.GPU_Image_PTR cache_texture);
예제 #32
0
 public static extern byte  FC_GetGlyphData(FC_Font_PTR font, FC_GlyphData_PTR result, UInt32 codepoint);
예제 #33
0
 public static extern FC_GlyphData_PTR FC_SetGlyphData(FC_Font_PTR font, UInt32 codepoint, FC_GlyphData glyph_data);
예제 #34
0
 public static extern SDL2_GPU.GPU_Rect  FC_DrawColor(
     FC_Font_PTR font, SDL2_GPU.GPU_Target_PTR dest,
     float x, float y,
     SDL.SDL_Color color,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #35
0
 public static extern void FC_SetLineSpacing(FC_Font_PTR font, int LineSpacing);
예제 #36
0
 public static extern SDL2_GPU.GPU_Rect  FC_DrawColumnEffect(
     FC_Font_PTR font, SDL2_GPU.GPU_Target_PTR dest,
     float x, float y, UInt16 width, FC_Effect effect,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #37
0
        public static extern void FC_SetLoadingString(FC_Font_PTR font,
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string str);
예제 #38
0
 public static extern SDL2_GPU.GPU_Rect  FC_GetCharacterOffset(
     FC_Font_PTR font,
     UInt16 position_index, int column_width,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #39
0
 public static extern void FC_SetSpacing(FC_Font_PTR font, int LetterSpacing);
예제 #40
0
 public static extern int  FC_GetDescent(
     FC_Font_PTR font,
     [In()][MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
     string formatted_text, __arglist);
예제 #41
0
 public static extern void FC_ClearFont(FC_Font_PTR font);
예제 #42
0
 public static extern int  FC_GetLineSpacing(FC_Font_PTR font);
예제 #43
0
        public static extern SDL2_GPU.GPU_Rect FC_DrawBoxAlign(
			FC_Font_PTR font, SDL2_GPU.GPU_Target_PTR dest,
			SDL2_GPU.GPU_Rect box, FC_AlignEnum align,
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string formatted_text, __arglist);
예제 #44
0
 public static extern SDL.SDL_Color  FC_GetDefaultColor(FC_Font_PTR font);
예제 #45
0
        public static extern SDL2_GPU.GPU_Rect FC_DrawColor(
			FC_Font_PTR font, SDL2_GPU.GPU_Target_PTR dest,
			float x, float y,
			SDL.SDL_Color color,
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string formatted_text, __arglist);
예제 #46
0
 public static extern void  FC_SetSpacing(FC_Font_PTR font, int LetterSpacing);
예제 #47
0
        public static extern SDL2_GPU.GPU_Rect FC_DrawColumnEffect(
			FC_Font_PTR font, SDL2_GPU.GPU_Target_PTR dest,
			float x, float y, UInt16 width, FC_Effect effect, 
			[In()] [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))]
			string formatted_text, __arglist);
예제 #48
0
 public static extern void  FC_SetDefaultColor(FC_Font_PTR font, SDL.SDL_Color color);
예제 #49
0
 public static extern void FC_FreeFont(FC_Font_PTR font);