#ifndef CORE_IMAGE_HH #define CORE_IMAGE_HH 1 #pragma once constexpr static unsigned int IMAGE_LOAD_GRAY = 0x0001U; constexpr static unsigned int IMAGE_LOAD_FLIP = 0x0002U; struct Image final { stbi_uc *pixels; glm::ivec2 size; }; #endif /* CORE_IMAGE_HH */