GRASS Programmer's Manual
6.4.3(2013)-r
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Macros
Pages
Text.c
Go to the documentation of this file.
1
#include "
driver.h
"
2
#include "
driverlib.h
"
3
4
void
COM_Text
(
const
char
*text)
5
{
6
if
(
driver
->
draw_text
) {
7
(*
driver
->
draw_text
) (text);
8
return
;
9
}
10
11
if
(!
font_is_freetype
())
12
soft_text
(
cur_x
,
cur_y
,
text_size_x
,
text_size_y
,
text_rotation
,
13
text);
14
else
15
soft_text_freetype
(
cur_x
,
cur_y
,
text_size_x
,
text_size_y
,
16
text_rotation
, text);
17
}
lib
driver
Text.c
Generated on Thu Sep 26 2013 09:48:07 for GRASS Programmer's Manual by
1.8.4