2024-08-18 11:33:51 +08:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* This file extract all stb-image implementations used by this project.
|
|
|
|
* Because std-image is a header-only library.
|
|
|
|
* It use macro to control whether extract implementation.
|
|
|
|
*/
|
2023-09-07 16:27:41 +08:00
|
|
|
|
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
2024-08-16 22:07:23 +08:00
|
|
|
#include <stb_image.h>
|
2023-09-07 16:27:41 +08:00
|
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
2024-08-16 22:07:23 +08:00
|
|
|
#include <stb_image_write.h>
|
2023-09-07 16:27:41 +08:00
|
|
|
#define STB_IMAGE_RESIZE_IMPLEMENTATION
|
2024-11-04 17:19:51 +08:00
|
|
|
#include <deprecated/stb_image_resize.h>
|