1 |
< |
/* Copyright (c) 1998 Silicon Graphics, Inc. */ |
2 |
< |
|
3 |
< |
/* SCCSid "$SunId$ SGI" */ |
4 |
< |
|
1 |
> |
/* RCSid: $Id$ */ |
2 |
|
/* |
3 |
|
* Header for holodeck display drivers. |
4 |
|
*/ |
5 |
+ |
#ifndef _RAD_RHDISP_H_ |
6 |
+ |
#define _RAD_RHDISP_H_ |
7 |
|
|
8 |
+ |
#include "color.h" |
9 |
+ |
|
10 |
+ |
#ifdef __cplusplus |
11 |
+ |
extern "C" { |
12 |
+ |
#endif |
13 |
+ |
|
14 |
|
/* display requests */ |
15 |
|
#define DR_NOOP 0 /* to release from vain DR_ATTEN */ |
16 |
|
#define DR_BUNDLE 1 /* lone bundle request */ |
50 |
|
#endif |
51 |
|
|
52 |
|
typedef struct { |
53 |
< |
int2 type; /* message type */ |
54 |
< |
int4 nbytes; /* number of additional bytes */ |
53 |
> |
int16 type; /* message type */ |
54 |
> |
int32 nbytes; /* number of additional bytes */ |
55 |
|
} MSGHEAD; /* message head */ |
56 |
|
|
57 |
|
/* |
67 |
|
* The standard output will always be available for writing, though it |
68 |
|
* may go to /dev/null. |
69 |
|
*/ |
70 |
+ |
|
71 |
+ |
|
72 |
+ |
/* rhdisp.c */ |
73 |
+ |
extern void serv_request(int type, int nbytes, char *p); |
74 |
+ |
extern int serv_result(void); |
75 |
+ |
/* rhdisp2.c */ |
76 |
+ |
extern int beam_sync(int all); |
77 |
+ |
extern void beam_init(int fresh); |
78 |
+ |
//extern int16 * beam_view(VIEW *vn, int hr, int vr); |
79 |
+ |
/* rhdisp2.c, rhdisp3.c */ |
80 |
+ |
extern void gridlines(void (*f)(FVECT wp[2])); |
81 |
+ |
/* rhd_ctab.c */ |
82 |
+ |
extern int new_ctab(int ncolors); |
83 |
+ |
extern int get_pixel(BYTE rgb[3], void (*set_pixel)(int h, int r, int g, int b)); |
84 |
+ |
|
85 |
+ |
|
86 |
+ |
#ifdef __cplusplus |
87 |
+ |
} |
88 |
+ |
#endif |
89 |
+ |
#endif /* _RAD_RHDISP_H_ */ |
90 |
+ |
|