File indexing completed on 2025-01-19 03:54:58
0001 /*****************************************************************************/ 0002 // Copyright 2006-2019 Adobe Systems Incorporated 0003 // All Rights Reserved. 0004 // 0005 // NOTICE: Adobe permits you to use, modify, and distribute this file in 0006 // accordance with the terms of the Adobe license agreement accompanying it. 0007 /*****************************************************************************/ 0008 0009 #include "dng_globals.h" 0010 #include "dng_simd_type.h" 0011 0012 /*****************************************************************************/ 0013 0014 #if qDNGValidate 0015 0016 bool gVerbose = false; 0017 0018 uint32 gDumpLineLimit = 100; 0019 0020 #endif 0021 0022 /******************************************************************************/ 0023 0024 bool gDNGUseFakeTimeZonesInXMP = false; 0025 0026 /*****************************************************************************/ 0027 0028 bool gDNGShowTimers = true; 0029 0030 /*****************************************************************************/ 0031 0032 uint32 gDNGStreamBlockSize = 4096; 0033 0034 uint32 gDNGMaxStreamBufferSize = 1024 * 1024; 0035 0036 /*****************************************************************************/ 0037 0038 bool gImagecore = false; 0039 0040 bool gPrintTimings = false; 0041 0042 bool gPrintAsserts = true; 0043 0044 bool gBreakOnAsserts = true; 0045 0046 /*****************************************************************************/ 0047 0048 // This is declared in dng_simd_type.h 0049 0050 SIMDType gDNGMaxSIMD = Scalar; 0051 0052 /*****************************************************************************/