ConfigDefs.h 700 B

1234567891011121314
  1. // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. ANKI_CONFIG_OPTION(rsrc_maxImageSize, 1024u * 1024u, 4u, MAX_U32)
  6. ANKI_CONFIG_OPTION(rsrc_dumpShaderSources, 0, 0, 1)
  7. ANKI_CONFIG_OPTION(
  8. rsrc_dataPaths, ".",
  9. "The engine loads assets only in from these paths. Separate them with : (it's smart enough to identify drive "
  10. "letters in Windows)")
  11. ANKI_CONFIG_OPTION(rsrc_dataPathExcludedStrings, "build",
  12. "A list of string separated by : that will be used to exclude paths from rsrc_dataPaths")
  13. ANKI_CONFIG_OPTION(rsrc_transferScratchMemorySize, 256_MB, 1_MB, 4_GB)