ConfigVars.defs.h 776 B

12345678910111213141516
  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_VAR_GROUP(RSRC)
  6. ANKI_CONFIG_VAR_U32(RsrcMaxImageSize, 1024u * 1024u, 4u, MAX_U32, "Max image size to load")
  7. ANKI_CONFIG_VAR_STRING(
  8. RsrcDataPaths, ".",
  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_VAR_STRING(RsrcDataPathExcludedStrings, "build",
  12. "A list of string separated by : that will be used to exclude paths from rsrc_dataPaths")
  13. ANKI_CONFIG_VAR_PTR_SIZE(RsrcTransferScratchMemorySize, 256_MB, 1_MB, 4_GB,
  14. "Memory that is used fot texture and buffer uploads")