Open Source Tomb Raider Engine
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

stb.cpp 279B

12345678910111213141516
  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) assert(x)
  10. #include "stb/stb_image.h"
  11. #define STB_IMAGE_WRITE_IMPLEMENTATION
  12. #include "stb/stb_image_write.h"