Last change
on this file since 6888aa2 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Imported original source code.
|
-
Property mode
set to
100755
|
File size:
971 bytes
|
Rev | Line | |
---|
[3ae31e9] | 1 | /*
|
---|
| 2 | ===========================================================================
|
---|
| 3 | graphdef.h -- graphics primitives package header
|
---|
| 4 | Version 6 -- 1987-05-27 -- D.N. Lynx Crowe
|
---|
| 5 | Setup for the Buchla 700 and the Matra-Harris 82716 VSDD
|
---|
| 6 | Copyright 1985,1976,1987 -- D.N. Lynx Crowe
|
---|
| 7 | ===========================================================================
|
---|
| 8 | */
|
---|
| 9 |
|
---|
| 10 | #define CLR 0
|
---|
| 11 | #define SET 1
|
---|
| 12 |
|
---|
| 13 | #define XPIX 512
|
---|
| 14 | #define YPIX 350
|
---|
| 15 |
|
---|
| 16 | #define XCTR XPIX/2
|
---|
| 17 | #define YCTR YPIX/2
|
---|
| 18 |
|
---|
| 19 | #define XMAX XPIX-1
|
---|
| 20 | #define YMAX YPIX-1
|
---|
| 21 |
|
---|
| 22 | #define P_BLK 0 /* colors for external PROM color table */
|
---|
| 23 | #define P_DKGRY 1
|
---|
| 24 | #define P_DKBLU 2
|
---|
| 25 | #define P_LTBLU 3
|
---|
| 26 | #define P_DKGRN 4
|
---|
| 27 | #define P_LTGRN 5
|
---|
| 28 | #define P_DKCYN 6
|
---|
| 29 | #define P_LTCYN 7
|
---|
| 30 | #define P_RED 8
|
---|
| 31 | #define P_ORG 9
|
---|
| 32 | #define P_PUR 10
|
---|
| 33 | #define P_MGN 11
|
---|
| 34 | #define P_BRN 12
|
---|
| 35 | #define P_YEL 13
|
---|
| 36 | #define P_LTGRY 14
|
---|
| 37 | #define P_WHT 15
|
---|
| 38 |
|
---|
| 39 | #define DEFCBGND P_DKBLU
|
---|
| 40 | #define DEFCFGND P_WHT
|
---|
| 41 |
|
---|
| 42 | #define DEFPBGND P_BLK
|
---|
| 43 | #define DEFPFGND P_DKGRY
|
---|
Note:
See
TracBrowser
for help on using the repository browser.