You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/raylib.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1466,9 +1466,9 @@ RLAPI int GetPixelDataSize(int width, int height, int format); // G
1466
1466
// Font loading/unloading functions
1467
1467
RLAPIFontGetFontDefault(void); // Get the default Font
1468
1468
RLAPIFontLoadFont(constchar*fileName); // Load font from file into GPU memory (VRAM)
1469
-
RLAPIFontLoadFontEx(constchar*fileName, intfontSize, constint*codepoints, intcodepointCount); // Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height
1469
+
RLAPIFontLoadFontEx(constchar*fileName, intfontSize, int*codepoints, intcodepointCount); // Load font from file with extended parameters, use NULL for codepoints and 0 for codepointCount to load the default character set, font size is provided in pixels height
1470
1470
RLAPIFontLoadFontFromImage(Imageimage, Colorkey, intfirstChar); // Load font from Image (XNA style)
1471
-
RLAPIFontLoadFontFromMemory(constchar*fileType, constunsigned char*fileData, intdataSize, intfontSize, constint*codepoints, intcodepointCount); // Load font from memory buffer, fileType refers to extension: i.e. '.ttf'
1471
+
RLAPIFontLoadFontFromMemory(constchar*fileType, constunsigned char*fileData, intdataSize, intfontSize, int*codepoints, intcodepointCount); // Load font from memory buffer, fileType refers to extension: i.e. '.ttf'
1472
1472
RLAPIboolIsFontValid(Fontfont); // Check if a font is valid (font data loaded, WARNING: GPU texture not checked)
1473
1473
RLAPIGlyphInfo*LoadFontData(constunsigned char*fileData, intdataSize, intfontSize, int*codepoints, intcodepointCount, inttype); // Load font data for further use
1474
1474
RLAPIImageGenImageFontAtlas(constGlyphInfo*glyphs, Rectangle**glyphRecs, intglyphCount, intfontSize, intpadding, intpackMethod); // Generate image font atlas using chars info
0 commit comments