summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/d3d/d3dText.h
blob: 9ff0650518b021797593fa1572a0dbe8cba8ce39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef D3D_TEXT_H
#define D3D_TEXT_H


#ifdef __cplusplus
extern "C" {
#endif

/*===========================================================================*/
/* Includes.                                                                 */
/*===========================================================================*/
#include <windows.h>
#include <ddraw.h>
#include <d3d.h>
/*===========================================================================*/
/* Magic numbers.                                                            */
/*===========================================================================*/
#define	D3DLTEXT_BITSUSED		0xFFFFFFFF
#define	MAX_VERTICES			700  // (14*40) 14 per character, 40 characters
/*===========================================================================*/
/* Macros defines.                                                           */
/*===========================================================================*/
/*===========================================================================*/
/* Type defines.                                                             */
/*===========================================================================*/
typedef struct _d3dText_metrics
{
  float		   	fntYScale,
                    fntXScale;

  int		   	fntXSpacing,
	               fntYSpacing;

  DWORD			dwColor;
  LPDIRECT3DDEVICE3 lpD3DDevice;

} D3DFONTMETRICS, *PD3DFONTMETRICS;
/*===========================================================================*/
/* Function prototypes.                                                      */
/*===========================================================================*/
extern BOOL InitD3DText( void );
extern void d3dTextDrawCharacter( char *c, int x, int y, PD3DFONTMETRICS pfntMetrics );
extern void d3dTextDrawString( char *pszString, int x, int y, PD3DFONTMETRICS pfntMetrics );
/*===========================================================================*/
/* Global variables.                                                         */
/*===========================================================================*/

#ifdef __cplusplus
}
#endif


#endif