summaryrefslogtreecommitdiffstats
path: root/src/core/image.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/image.hh')
-rw-r--r--src/core/image.hh13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core/image.hh b/src/core/image.hh
deleted file mode 100644
index b5c69e0..0000000
--- a/src/core/image.hh
+++ /dev/null
@@ -1,13 +0,0 @@
-#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