소스 검색

Added GetDefaultFont() function

Useful to be used with DrawTextEx() to draw with default font and
extended parameters
pull/2/head
Ray 11 년 전
부모
커밋
1a8ef80abd
2개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      src/raylib.h
  2. +6
    -0
      src/text.c

+ 1
- 0
src/raylib.h 파일 보기

@ -317,6 +317,7 @@ void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, V
//------------------------------------------------------------------------------------
// Font Loading and Text Drawing Functions (Module: text)
//------------------------------------------------------------------------------------
SpriteFont GetDefaultFont(); // Get the default SpriteFont
SpriteFont LoadSpriteFont(const char *fileName); // Load a SpriteFont image into GPU memory
void UnloadSpriteFont(SpriteFont spriteFont); // Unload SpriteFont from GPU memory
void DrawText(const char *text, int posX, int posY, int fontSize, Color color); // Draw text (using default font)

+ 6
- 0
src/text.c 파일 보기

@ -192,6 +192,12 @@ extern void UnloadDefaultFont()
free(defaultFont.charSet);
}
// Get the default font, useful to be used with extended parameters
SpriteFont GetDefaultFont()
{
return defaultFont;
}
// Load a SpriteFont image into GPU memory
SpriteFont LoadSpriteFont(const char* fileName)
{

불러오는 중...
취소
저장