LeviLamina
Loading...
Searching...
No Matches
TextureContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/minecraft_renderer/renderer/AllowDroppingMips.h"
7#include "mc/deps/renderer/hal/TextureDescription.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace cg { class ImageBuffer; }
12namespace cg { class ImageResource; }
13// clang-format on
14
15namespace mce {
16
17class TextureContainer {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::cg::ImageResource>> mStorage;
22 ::ll::TypedStorage<4, 64, ::mce::TextureDescription> mDescription;
23 ::ll::TypedStorage<1, 1, ::mce::AllowDroppingMips> mAllowDroppingMips;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 TextureContainer();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI TextureContainer(::cg::ImageBuffer&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
34
35 MCAPI TextureContainer(::std::shared_ptr<::cg::ImageResource>&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
36
37 MCAPI TextureContainer(::std::vector<::cg::ImageBuffer>&& rhs, ::mce::TextureDescription const& textureDescription);
38
39 MCAPI ~TextureContainer();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::cg::ImageBuffer&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
46
47 MCAPI void* $ctor(::std::shared_ptr<::cg::ImageResource>&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
48
49 MCAPI void* $ctor(::std::vector<::cg::ImageBuffer>&& rhs, ::mce::TextureDescription const& textureDescription);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCFOLD void $dtor();
56 // NOLINTEND
57};
58
59} // namespace mce
Definition ImageBuffer.h:16
Definition ImageResource.h:12
Definition TextureContainer.h:7