blob: c99b551005249dc0b761d246c9d999eb6d8dc5fa (
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
|
#ifndef TARGEN_H
/*
* Argyll Color Correction System
* Test target chart Generator.
*
* Author: Graeme W. Gill
* Date: 7/4/2002
*
* Copyright 2002, Graeme W. Gill
* All rights reserved.
*
* This material is licenced under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 :-
* see the License.txt file for licencing details.
*/
/* Targen generation common defines */
#define MXTD ICX_MXINKS /* From xicc/xcolorants.h */
/* A fixed point position */
struct _fxpos {
double p[MXTD]; /* Device coordinate position */
double v[MXTD]; /* Room for perceptual value */
int eloc; /* if >= 0, cgats index, to even location */
}; typedef struct _fxpos fxpos;
#define TARGEN_H
#endif /* TARGEN_H */
|