LeviLamina
Loading...
Searching...
No Matches
CompressedImageDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/render_dragon/texture_decoder/texd/CompressionScheme.h"
7#include "mc/external/render_dragon/texture_decoder/texd/ImageFormat.h"
8#include "mc/external/render_dragon/texture_decoder/texd/PixelFormat.h"
9
10namespace texd {
11
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, ::texd::ImageFormat> imageFormat;
17 ::ll::TypedStorage<4, 4, ::texd::CompressionScheme> compressionScheme;
18 ::ll::TypedStorage<4, 4, ::texd::PixelFormat> pixelFormat;
19 ::ll::TypedStorage<1, 1, bool> isLinear;
20 ::ll::TypedStorage<4, 4, uint> width;
21 ::ll::TypedStorage<4, 4, uint> height;
22 ::ll::TypedStorage<4, 4, uint> mipLevelCount;
23 // NOLINTEND
24};
25
26} // namespace texd
Definition CompressedImageDescription.h:12