50# if defined(__CYGWIN__)
51# define APIENTRY __attribute__ ((__stdcall__))
58# include <OpenGL/gl.h>
70FL_EXPORT
void gl_rect(
int x,
int y,
int w,
int h);
75inline void gl_rectf(
int x,
int y,
int w,
int h) {glRecti(x,y,x+w,y+h);}
77FL_EXPORT
void gl_font(
int fontid,
int size);
80FL_EXPORT
double gl_width(
const char *);
81FL_EXPORT
double gl_width(
const char *,
int n);
84FL_EXPORT
void gl_draw(
const char*);
85FL_EXPORT
void gl_draw(
const char*,
int n);
86FL_EXPORT
void gl_draw(
const char*,
int x,
int y);
87FL_EXPORT
void gl_draw(
const char*,
float x,
float y);
88FL_EXPORT
void gl_draw(
const char*,
int n,
int x,
int y);
89FL_EXPORT
void gl_draw(
const char*,
int n,
float x,
float y);
90FL_EXPORT
void gl_draw(
const char*,
int x,
int y,
int w,
int h,
Fl_Align);
91FL_EXPORT
void gl_measure(
const char*,
int& x,
int& y);
97FL_EXPORT
void gl_draw_image(
const uchar *,
int x,
int y,
int w,
int h,
int d=3,
int ld=0);
This file contains type definitions and general enumerations.
unsigned Fl_Align
FLTK type for alignment control.
Definition: Enumerations.H:826
unsigned int Fl_Color
An FLTK color value; see also Colors
Definition: Enumerations.H:932
unsigned char uchar
unsigned char
Definition: fl_types.h:30
FL_EXPORT void gl_measure(const char *, int &x, int &y)
Measure how wide and tall the string will be when drawn by the gl_draw() function.
Definition: gl_draw.cxx:277
FL_EXPORT double gl_width(const char *)
Returns the width of the string in the current fnt.
Definition: gl_draw.cxx:58
FL_EXPORT void gl_color(Fl_Color i)
Sets the curent OpenGL color to an FLTK color.
Definition: gl_draw.cxx:309
void gl_rectf(int x, int y, int w, int h)
Fills the given rectangle with the current color.
Definition: gl.h:75
FL_EXPORT void gl_rect(int x, int y, int w, int h)
Outlines the given rectangle with the current color.
Definition: gl_draw.cxx:286
FL_EXPORT void gl_draw(const char *)
Draws a nul-terminated string in the current font at the current position.
Definition: gl_draw.cxx:239
FL_EXPORT void gl_start()
Creates an OpenGL context.
Definition: gl_start.cxx:56
FL_EXPORT void gl_finish()
Releases an OpenGL context.
Definition: gl_start.cxx:98
FL_EXPORT int gl_descent()
Returns the current font's descent.
Definition: gl_draw.cxx:56
FL_EXPORT int gl_height()
Returns the current font's height.
Definition: gl_draw.cxx:54
FL_EXPORT void gl_font(int fontid, int size)
Sets the current OpenGL font to the same font as calling fl_font()
Definition: gl_draw.cxx:78
int gl_texture_pile_height(void)
Returns the current height of the pile of pre-computed string textures.
Definition: gl_draw.cxx:558