17 lines
540 B
C++
17 lines
540 B
C++
/*---------------------------------------------------------------------------*/
|
|
// Author : hiyohiyo
|
|
// Mail : hiyohiyo@crystalmark.info
|
|
// Web : https://crystalmark.info/
|
|
// License : MIT License
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#include "stdafx.h"
|
|
#define STBI_ONLY_PNG
|
|
#define STBI_NO_STDIO
|
|
#define STBI_NO_HDR
|
|
#define STBI_NO_LINEAR
|
|
#define STBI_NO_FAILURE_STRINGS
|
|
#define STBI_ASSERT(x)
|
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
|
#include "stb_image.h" |