ConfigDefs.h 860 B

1234567891011121314151617181920
  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(gr_validation, 0, 0, 1)
  6. ANKI_CONFIG_OPTION(gr_debugPrintf, 0, 0, 1)
  7. ANKI_CONFIG_OPTION(gr_debugMarkers, 0, 0, 1)
  8. ANKI_CONFIG_OPTION(gr_vsync, 0, 0, 1)
  9. ANKI_CONFIG_OPTION(gr_maxBindlessTextures, 256, 8, 1024)
  10. ANKI_CONFIG_OPTION(gr_maxBindlessImages, 32, 8, 1024)
  11. ANKI_CONFIG_OPTION(gr_rayTracing, 0, 0, 1, "Try enabling ray tracing")
  12. ANKI_CONFIG_OPTION(gr_64bitAtomics, 1, 0, 1)
  13. ANKI_CONFIG_OPTION(gr_samplerFilterMinMax, 1, 0, 1)
  14. // Vulkan
  15. ANKI_CONFIG_OPTION(gr_diskShaderCacheMaxSize, 128_MB, 1_MB, 1_GB)
  16. ANKI_CONFIG_OPTION(gr_vkminor, 1, 1, 1)
  17. ANKI_CONFIG_OPTION(gr_vkmajor, 1, 1, 1)
  18. ANKI_CONFIG_OPTION(gr_asyncCompute, 1, 0, 1, "Enable or not async compute")