diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 16:24:15 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-05-01 16:24:15 +0200 |
commit | a30ba67504ffd12c4db499adbb5ce47a7d1f6036 (patch) | |
tree | 9ae1a7e3849dda6bbb5c578232f6f2fa5b2e7e7e /spectro/ccwin.h | |
parent | 89e99e8a827859729729dfc92d74be4a8f96f1a4 (diff) | |
parent | 094535c010320967639e8e86f974d878e80baa72 (diff) |
New release 1.7.0
Diffstat (limited to 'spectro/ccwin.h')
-rw-r--r-- | spectro/ccwin.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/spectro/ccwin.h b/spectro/ccwin.h new file mode 100644 index 0000000..4d32466 --- /dev/null +++ b/spectro/ccwin.h @@ -0,0 +1,40 @@ + +#ifndef CCWIN_H + +/* + * Argyll Color Correction System + * ChromeCast Display target patch window + * + * Author: Graeme W. Gill + * Date: 8/9/14 + * + * Copyright 2014 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. + */ + + +/* See ccast/ccmdns.h for function to get list of available ChromeCasts */ + +/* Create a ChromeCast display test window, default grey */ +dispwin *new_ccwin( +ccast_id *cc_id, /* ChromeCast to open */ +double width, double height, /* Width and height as multiplier of 10% width default. */ +double hoff, double voff, /* Offset from center in fraction of screen, range -1.0 .. 1.0 */ +int nowin, /* NZ if no window should be created - RAMDAC access only */ +int native, /* X0 = use current per channel calibration curve */ + /* X1 = set native linear output and use ramdac high precn. */ + /* 0X = use current color management cLut (MadVR) */ + /* 1X = disable color management cLUT (MadVR) */ +int *noramdac, /* Return nz if no ramdac access. native is set to X0 */ +int *nocm, /* Return nz if no CM cLUT access. native is set to 0X */ +int out_tvenc, /* 1 = use RGB Video Level encoding */ +int blackbg, /* NZ if whole screen should be filled with black */ +int verb, /* NZ for verbose prompts */ +int ddebug /* >0 to print debug statements to stderr */ +); + +#define CCWIN_H +#endif /* CCWIN_H */ |