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
8// auto generated forward declare list
9// clang-format off
10namespace cg { class ImageBuffer; }
11namespace cg { class ImageResource; }
12namespace mce { struct TextureDescription; }
13// clang-format on
14
15namespace mce {
16
18public:
19 // member variables
20 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 TextureContainer& operator=(TextureContainer const&);
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCNAPI TextureContainer(::cg::ImageBuffer&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
36
37 MCNAPI TextureContainer(::std::shared_ptr<::cg::ImageResource>&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
38
39 MCNAPI
40 TextureContainer(::std::vector<::cg::ImageBuffer>&& rhs, ::mce::TextureDescription const& textureDescription);
41
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCNAPI void* $ctor(::cg::ImageBuffer&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
49
50 MCNAPI void* $ctor(::std::shared_ptr<::cg::ImageResource>&& rhs, ::mce::AllowDroppingMips allowDroppingMips);
51
52 MCNAPI void* $ctor(::std::vector<::cg::ImageBuffer>&& rhs, ::mce::TextureDescription const& textureDescription);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCNAPI void $dtor();
59 // NOLINTEND
60};
61
62} // namespace mce
Definition TextureContainer.h:17
MCAPI TextureContainer(::cg::ImageBuffer &&rhs, ::mce::AllowDroppingMips allowDroppingMips)
MCAPI void * $ctor(::std::vector<::cg::ImageBuffer > &&rhs, ::mce::TextureDescription const &textureDescription)
MCAPI TextureContainer(::std::vector<::cg::ImageBuffer > &&rhs, ::mce::TextureDescription const &textureDescription)
MCAPI TextureContainer(::std::shared_ptr<::cg::ImageResource > &&rhs, ::mce::AllowDroppingMips allowDroppingMips)
MCAPI void * $ctor(::cg::ImageBuffer &&rhs, ::mce::AllowDroppingMips allowDroppingMips)
MCAPI void * $ctor(::std::shared_ptr<::cg::ImageResource > &&rhs, ::mce::AllowDroppingMips allowDroppingMips)
Definition Alias.h:14
Definition TextureDescription.h:10