|
SDL
2.0
|
Include dependency graph for SDL_test_font.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Macros | |
| #define | FONT_CHARACTER_SIZE 8 |
Functions | |
| int | SDLTest_DrawCharacter (SDL_Renderer *renderer, int x, int y, char c) |
| Draw a string in the currently set font. More... | |
| int | SDLTest_DrawString (SDL_Renderer *renderer, int x, int y, const char *s) |
| Draw a string in the currently set font. More... | |
Include file for SDL test framework.
This code is a part of the SDL2_test library, not the main SDL library.
Definition in file SDL_test_font.h.
| #define FONT_CHARACTER_SIZE 8 |
Definition at line 41 of file SDL_test_font.h.
Referenced by SDLTest_DrawCharacter(), and SDLTest_DrawString().
| int SDLTest_DrawCharacter | ( | SDL_Renderer * | renderer, |
| int | x, | ||
| int | y, | ||
| char | c | ||
| ) |
Draw a string in the currently set font.
| renderer | The renderer to draw on. |
| x | The X coordinate of the upper left corner of the character. |
| y | The Y coordinate of the upper left corner of the character. |
| c | The character to draw. |
Definition at line 3117 of file SDL_test_font.c.
References FONT_CHARACTER_SIZE, SDL_Rect::h, NULL, SDL_Surface::pitch, SDL_Surface::pixels, SDL_CreateRGBSurface, SDL_CreateTextureFromSurface, SDL_FreeSurface, SDL_GetRenderDrawColor, SDL_RenderCopy, SDL_SetTextureAlphaMod, SDL_SetTextureColorMod, SDL_SWSURFACE, SDLTest_FontData, SDL_Rect::w, SDL_Rect::x, and SDL_Rect::y.
Referenced by SDLTest_DrawString().
| int SDLTest_DrawString | ( | SDL_Renderer * | renderer, |
| int | x, | ||
| int | y, | ||
| const char * | s | ||
| ) |
Draw a string in the currently set font.
| renderer | The renderer to draw on. |
| x | The X coordinate of the upper left corner of the string. |
| y | The Y coordinate of the upper left corner of the string. |
| s | The string to draw. |
Definition at line 3222 of file SDL_test_font.c.
References FONT_CHARACTER_SIZE, and SDLTest_DrawCharacter().