BsIBLUtility.cpp 505 B

1234567891011121314
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "Renderer/BsIBLUtility.h"
  4. namespace bs { namespace ct
  5. {
  6. const UINT32 IBLUtility::REFLECTION_CUBEMAP_SIZE = 256;
  7. const UINT32 IBLUtility::IRRADIANCE_CUBEMAP_SIZE = 32;
  8. const IBLUtility& gIBLUtility()
  9. {
  10. return IBLUtility::instance();
  11. }
  12. }}