$darkmode
Suckless OGL 1.0.0
A lean, high-performance C11 PBR Renderer
stb_image_impl.c File Reference
#include <stb_image.h>
#include <stb_image_write.h>
#include <stb_truetype.h>
Include dependency graph for stb_image_impl.c:

Macros

#define STBI_MALLOC(sz)   malloc(sz)
 
#define STBI_REALLOC(p, newsz)   realloc(p, newsz)
 
#define STBI_FREE(p)   free(p)
 
#define STBIW_MALLOC(sz)   malloc(sz)
 
#define STBIW_REALLOC(p, newsz)   realloc(p, newsz)
 
#define STBIW_FREE(p)   free(p)
 
#define STBTT_malloc(x, u)   ((void)(u), malloc(x))
 
#define STBTT_free(x, u)   ((void)(u), free(x))
 
#define STB_IMAGE_IMPLEMENTATION
 
#define STB_IMAGE_WRITE_IMPLEMENTATION
 
#define STB_TRUETYPE_IMPLEMENTATION
 

Macro Definition Documentation

◆ STB_IMAGE_IMPLEMENTATION

#define STB_IMAGE_IMPLEMENTATION

◆ STB_IMAGE_WRITE_IMPLEMENTATION

#define STB_IMAGE_WRITE_IMPLEMENTATION

◆ STB_TRUETYPE_IMPLEMENTATION

#define STB_TRUETYPE_IMPLEMENTATION

◆ STBI_FREE

#define STBI_FREE (   p)    free(p)

◆ STBI_MALLOC

#define STBI_MALLOC (   sz)    malloc(sz)

◆ STBI_REALLOC

#define STBI_REALLOC (   p,
  newsz 
)    realloc(p, newsz)

◆ STBIW_FREE

#define STBIW_FREE (   p)    free(p)

◆ STBIW_MALLOC

#define STBIW_MALLOC (   sz)    malloc(sz)

◆ STBIW_REALLOC

#define STBIW_REALLOC (   p,
  newsz 
)    realloc(p, newsz)

◆ STBTT_free

#define STBTT_free (   x,
 
)    ((void)(u), free(x))

◆ STBTT_malloc

#define STBTT_malloc (   x,
 
)    ((void)(u), malloc(x))