| 1 |
greg |
3.1 |
/* Copyright (c) 1997 Regents of the University of California */
|
| 2 |
|
|
|
| 3 |
|
|
/* SCCSid "$SunId$ LBL" */
|
| 4 |
|
|
|
| 5 |
|
|
/*
|
| 6 |
|
|
* Error messages for tone mapping functions.
|
| 7 |
|
|
* Included exclusively in "tonemap.c".
|
| 8 |
|
|
* English version.
|
| 9 |
|
|
*/
|
| 10 |
|
|
|
| 11 |
|
|
char *tmErrorMessage[] = {
|
| 12 |
|
|
"no error",
|
| 13 |
|
|
"out of memory",
|
| 14 |
|
|
"illegal argument value",
|
| 15 |
|
|
"invalid tone mapping",
|
| 16 |
|
|
"cannot compute tone mapping",
|
| 17 |
|
|
"file cannot be opened or is the wrong type",
|
| 18 |
greg |
3.2 |
"code consistency error 1",
|
| 19 |
|
|
"code consistency error 2",
|
| 20 |
greg |
3.1 |
};
|