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