| 1 |
greg |
3.1 |
/* Copyright (c) 1997 Regents of the University of California */
|
| 2 |
|
|
|
| 3 |
|
|
/* SCCSid "$SunId$ LBL" */
|
| 4 |
|
|
|
| 5 |
|
|
/*
|
| 6 |
|
|
* Header file for OpenGL display process interface to rwalk.
|
| 7 |
|
|
*/
|
| 8 |
|
|
|
| 9 |
|
|
#include "view.h"
|
| 10 |
|
|
|
| 11 |
|
|
typedef struct {
|
| 12 |
|
|
int xres, yres; /* display window size (renderable area) */
|
| 13 |
|
|
} GLDISP; /* display structure */
|
| 14 |
|
|
|
| 15 |
|
|
extern GLDISP ourgld; /* our display structure */
|
| 16 |
|
|
/* background views */
|
| 17 |
|
|
#define BG_XMIN 0
|
| 18 |
|
|
#define BG_XMAX 1
|
| 19 |
|
|
#define BG_YMIN 2
|
| 20 |
|
|
#define BG_YMAX 3
|
| 21 |
|
|
#define BG_ZMIN 4
|
| 22 |
|
|
#define BG_ZMAX 5
|
| 23 |
|
|
|
| 24 |
|
|
#define BGVWNAMES {"xmin","xmax","ymin","ymax","zmin","zmax"}
|