GRASS Programmer's Manual  6.4.2(2012)
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator 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())
13  text);
14  else
16  text_rotation, text);
17 }