59 # if defined(__CYGWIN__)
60 # define APIENTRY __attribute__ ((__stdcall__))
67 # include <OpenGL/gl.h>
79 FL_EXPORT
void gl_rect(
int x,
int y,
int w,
int h);
84 inline void gl_rectf(
int x,
int y,
int w,
int h) {glRecti(x,y,x+w,y+h);}
86 FL_EXPORT
void gl_font(
int fontid,
int size);
89 FL_EXPORT
double gl_width(
const char *);
90 FL_EXPORT
double gl_width(
const char *,
int n);
93 FL_EXPORT
void gl_draw(
const char*);
94 FL_EXPORT
void gl_draw(
const char*,
int n);
95 FL_EXPORT
void gl_draw(
const char*,
int x,
int y);
96 FL_EXPORT
void gl_draw(
const char*,
float x,
float y);
97 FL_EXPORT
void gl_draw(
const char*,
int n,
int x,
int y);
98 FL_EXPORT
void gl_draw(
const char*,
int n,
float x,
float y);
99 FL_EXPORT
void gl_draw(
const char*,
int x,
int y,
int w,
int h,
Fl_Align);
100 FL_EXPORT
void gl_measure(
const char*,
int& x,
int& y);
106 FL_EXPORT
void gl_draw_image(
const uchar *,
int x,
int y,
int w,
int h,
int d=3,
int ld=0);
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:305
FL_EXPORT double gl_width(const char *)
Returns the width of the string in the current fnt.
Definition: gl_draw.cxx:56
FL_EXPORT void gl_start()
Creates an OpenGL context.
Definition: gl_start.cxx:64
FL_EXPORT void gl_color(Fl_Color i)
Sets the curent OpenGL color to an FLTK color.
Definition: gl_draw.cxx:328
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:298
This file contains type definitions and general enumerations.
int gl_texture_pile_height(void)
Returns the current height of the pile of pre-computed string textures.
Definition: gl_draw.cxx:541
void gl_rectf(int x, int y, int w, int h)
Fills the given rectangle with the current color.
Definition: gl.h:84
FL_EXPORT void gl_draw(const char *)
Draws a nul-terminated string in the current font at the current position.
Definition: gl_draw.cxx:260
unsigned int Fl_Color
an FLTK color value
Definition: Enumerations.H:769
unsigned Fl_Align
FLTK type for alignment control.
Definition: Enumerations.H:663
FL_EXPORT int gl_descent()
Returns the current font's descent.
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
FL_EXPORT void gl_finish()
Releases an OpenGL context.
Definition: gl_start.cxx:105
unsigned char uchar
unsigned char
Definition: fl_types.h:39
FL_EXPORT int gl_height()
Returns the current font's height.
Definition: gl_draw.cxx:52