HaikuDepot: notify work status from main window
[haiku.git] / src / libs / glut / glutbitmap.h
blobf2cd07e7113cc2d73f3bdfbcc9932810ddd9c2ca
1 /*
2 * Copyright 1994-1997 Mark Kilgard, All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * GPL licensing not permitted.
7 * Authors:
8 * Mark Kilgard
9 */
10 #ifndef __glutbitmap_h__
11 #define __glutbitmap_h__
14 #include <GL/glut.h>
17 typedef struct {
18 const GLsizei width;
19 const GLsizei height;
20 const GLfloat xorig;
21 const GLfloat yorig;
22 const GLfloat advance;
23 const GLubyte *bitmap;
24 } BitmapCharRec, *BitmapCharPtr;
26 typedef struct {
27 const char *name;
28 const int num_chars;
29 const int first;
30 const BitmapCharRec * const *ch;
31 } BitmapFontRec, *BitmapFontPtr;
33 typedef void *GLUTbitmapFont;
36 #endif /* __glutbitmap_h__ */