|
Last change
on this file since de91266 was f7428b1, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Started to rework include files.
|
-
Property mode
set to
100644
|
|
File size:
958 bytes
|
| Line | |
|---|
| 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 | #pragma once
|
|---|
| 11 |
|
|---|
| 12 | #define CLR 0
|
|---|
| 13 | #define SET 1
|
|---|
| 14 |
|
|---|
| 15 | #define XPIX 512
|
|---|
| 16 | #define YPIX 350
|
|---|
| 17 |
|
|---|
| 18 | #define XCTR (XPIX / 2)
|
|---|
| 19 | #define YCTR (YPIX / 2)
|
|---|
| 20 |
|
|---|
| 21 | #define XMAX (XPIX - 1)
|
|---|
| 22 | #define YMAX (YPIX - 1)
|
|---|
| 23 |
|
|---|
| 24 | #define P_BLK 0 /* colors for external PROM color table */
|
|---|
| 25 | #define P_DKGRY 1
|
|---|
| 26 | #define P_DKBLU 2
|
|---|
| 27 | #define P_LTBLU 3
|
|---|
| 28 | #define P_DKGRN 4
|
|---|
| 29 | #define P_LTGRN 5
|
|---|
| 30 | #define P_DKCYN 6
|
|---|
| 31 | #define P_LTCYN 7
|
|---|
| 32 | #define P_RED 8
|
|---|
| 33 | #define P_ORG 9
|
|---|
| 34 | #define P_PUR 10
|
|---|
| 35 | #define P_MGN 11
|
|---|
| 36 | #define P_BRN 12
|
|---|
| 37 | #define P_YEL 13
|
|---|
| 38 | #define P_LTGRY 14
|
|---|
| 39 | #define P_WHT 15
|
|---|
| 40 |
|
|---|
| 41 | #define DEFCBGND P_DKBLU
|
|---|
| 42 | #define DEFCFGND P_WHT
|
|---|
| 43 |
|
|---|
| 44 | #define DEFPBGND P_BLK
|
|---|
| 45 | #define DEFPFGND P_DKGRY
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.