LeviLamina
Loading...
Searching...
No Matches
ImageFormat.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace texd {
6
7enum class ImageFormat : int {
8 Unknown = 0,
9 Dds = 1,
10 Ktx1 = 2,
11 Ktx2 = 3,
12};
13
14}