stbi_lrot
#define stbi_lrot(x,y) _lrotl(x,y)
#define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (32 - (y))))