GRASS Programmer's Manual  6.4.2(2012)
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Get_t_box.c
Go to the documentation of this file.
1 #include "driver.h"
2 #include "driverlib.h"
3 
4 void COM_Get_text_box(const char *text, int *t, int *b, int *l, int *r)
5 {
6  if (!font_is_freetype()) {
9  get_text_ext(t, b, l, r);
10  }
11  else {
14  get_text_ext_freetype(t, b, l, r);
15  }
16 }