Open Source Tomb Raider Engine
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

stb.cpp 302B

1234567891011121314151617
  1. /*!
  2. * \file src/deps/stb/stb.cpp
  3. * \brief stb implementation
  4. *
  5. * \author xythobuz
  6. */
  7. #include "global.h"
  8. #define STB_IMAGE_IMPLEMENTATION
  9. #define STBI_ASSERT(x) orAssert(x)
  10. #define STBI_NO_SIMD
  11. #include "stb/stb_image.h"
  12. #define STB_IMAGE_WRITE_IMPLEMENTATION
  13. #include "stb/stb_image_write.h"