enum stbir_edge

#include <stb_image_resize2.h>

enum stbir_edge
{
    STBIR_EDGE_CLAMP   = 0,
    STBIR_EDGE_REFLECT = 1,
    STBIR_EDGE_WRAP    = 2,
    STBIR_EDGE_ZERO    = 3,
};