1 /*****************************************************************************/
2 // Copyright 2006-2019 Adobe Systems Incorporated
3 // All Rights Reserved.
4 //
5 // NOTICE:  Adobe permits you to use, modify, and distribute this file in
6 // accordance with the terms of the Adobe license agreement accompanying it.
7 /*****************************************************************************/
8 
9 #include "dng_globals.h"
10 #include "dng_simd_type.h"
11 
12 /*****************************************************************************/
13 
14 #if qDNGValidate
15 
16 bool gVerbose = false;
17 
18 uint32 gDumpLineLimit = 100;
19 
20 #endif
21 
22 /******************************************************************************/
23 
24 bool gDNGUseFakeTimeZonesInXMP = false;
25 
26 /*****************************************************************************/
27 
28 bool gDNGShowTimers = true;
29 
30 /*****************************************************************************/
31 
32 uint32 gDNGStreamBlockSize = 4096;
33 
34 uint32 gDNGMaxStreamBufferSize = 1024 * 1024;
35 
36 /*****************************************************************************/
37 
38 bool gImagecore = false;
39 
40 bool gPrintTimings = false;
41 
42 bool gPrintAsserts = true;
43 
44 bool gBreakOnAsserts = true;
45 
46 /*****************************************************************************/
47 
48 // This is declared in dng_simd_type.h
49 
50 SIMDType gDNGMaxSIMD = Scalar;
51 
52 /*****************************************************************************/
53