summaryrefslogtreecommitdiffstats
path: root/src/core/resource/image.hh
blob: 575591f6498b8b9a394575927013f91a001be0c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

constexpr static unsigned int IMAGE_LOAD_GRAY = 0x0001U;
constexpr static unsigned int IMAGE_LOAD_FLIP = 0x0002U;

struct Image final {
    static void register_resource(void);

    stbi_uc* pixels;
    glm::ivec2 size;
};