Skip to content

Latest commit

 

History

History
81 lines (66 loc) · 2.38 KB

SDL_test_font.h

File metadata and controls

81 lines (66 loc) · 2.38 KB
 
1
2
/*
Simple DirectMedia Layer
Jan 2, 2021
Jan 2, 2021
3
Copyright (C) 1997-2021 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/**
* \file SDL_test_font.h
*
* Include file for SDL test framework.
*
* This code is a part of the SDL2_test library, not the main SDL library.
*/
Nov 21, 2016
Nov 21, 2016
30
31
#ifndef SDL_test_font_h_
#define SDL_test_font_h_
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
extern "C" {
#endif
/* Function prototypes */
#define FONT_CHARACTER_SIZE 8
/**
* \brief Draw a string in the currently set font.
*
* \param renderer The renderer to draw on.
* \param x The X coordinate of the upper left corner of the character.
* \param y The Y coordinate of the upper left corner of the character.
* \param c The character to draw.
*
* \returns Returns 0 on success, -1 on failure.
*/
Sep 8, 2017
Sep 8, 2017
53
int SDLTest_DrawCharacter(SDL_Renderer *renderer, int x, int y, char c);
54
55
56
57
58
59
60
61
62
63
64
/**
* \brief Draw a string in the currently set font.
*
* \param renderer The renderer to draw on.
* \param x The X coordinate of the upper left corner of the string.
* \param y The Y coordinate of the upper left corner of the string.
* \param s The string to draw.
*
* \returns Returns 0 on success, -1 on failure.
*/
Sep 8, 2017
Sep 8, 2017
65
int SDLTest_DrawString(SDL_Renderer *renderer, int x, int y, const char *s);
Sep 8, 2017
Sep 8, 2017
68
69
70
/**
* \brief Cleanup textures used by font drawing functions.
*/
Sep 8, 2017
Sep 8, 2017
71
void SDLTest_CleanupTextDrawing(void);
Sep 8, 2017
Sep 8, 2017
72
73
74
75
76
77
78
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
}
#endif
#include "close_code.h"
Nov 21, 2016
Nov 21, 2016
79
#endif /* SDL_test_font_h_ */
80
81
/* vi: set ts=4 sw=4 expandtab: */