diff options
| author | Ray <raysan5@gmail.com> | 2018-07-02 16:39:04 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-07-02 16:39:04 +0200 |
| commit | 276974de05f4ab01feae89b633dcfafa720a9bf2 (patch) | |
| tree | 2fc4458237e676fb975c71ba380ed27e2f68c9bc /src | |
| parent | 7dedb84fd07f81cbe3f7c299b7e6e3f4e9959391 (diff) | |
| download | raylib-276974de05f4ab01feae89b633dcfafa720a9bf2.tar.gz raylib-276974de05f4ab01feae89b633dcfafa720a9bf2.zip | |
Removed function prototype
This function was added in text module as GenImageFontAtlas()
Diffstat (limited to 'src')
| -rw-r--r-- | src/textures.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/textures.c b/src/textures.c index 29316a7a..81bbbf3c 100644 --- a/src/textures.c +++ b/src/textures.c @@ -2123,18 +2123,6 @@ Image GenImageCellular(int width, int height, int tileSize) return image; } - -// Generate image: font atlas. Requires TTF as input file. -// NOTE: Generated atlas packs characters in order and rectangles are defined with magenta borders (?) -// NOTE: Characters info data should be allocated by user for charsCount -Image GenImageFont(const char *fileName, int fontSize, int charsCount, int *fontChars, CharInfo *chars) -{ - Image image = { 0 }; - - // TODO. - - return image; -} #endif // SUPPORT_IMAGE_GENERATION // Generate GPU mipmaps for a texture |
