LeviLamina
Loading...
Searching...
No Matches
BatchKey.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/controls/UIMaterialType.h"
7#include "mc/client/gui/screens/BatchClippingState.h"
8#include "mc/client/gui/screens/UIBatchType.h"
9#include "mc/client/gui/screens/UIItemRenderInfo.h"
10#include "mc/deps/core/math/Color.h"
11#include "mc/deps/core/resource/ResourceLocation.h"
12
13struct BatchKey {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 4, ::UIBatchType> mBatchType;
18 ::ll::TypedStorage<4, 4, int> mCustomId;
19 ::ll::TypedStorage<4, 4, int> mDepth;
20 ::ll::TypedStorage<4, 4, float> mAlpha;
21 ::ll::TypedStorage<4, 16, ::mce::Color> mColor;
22 ::ll::TypedStorage<4, 4, ::UIMaterialType> mUIMaterialType;
23 ::ll::TypedStorage<4, 20, ::BatchClippingState> mClippingState;
24 ::ll::TypedStorage<8, 112, ::std::array<::ResourceLocation, 2>> mResourceLocations;
25 ::ll::TypedStorage<1, 1, ::UIItemRenderInfo> mUIItemRenderInfo;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 BatchKey& operator=(BatchKey const&);
31 BatchKey();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI BatchKey(::BatchKey&& rha);
37
38 MCAPI BatchKey(::BatchKey const& rha);
39
40 MCAPI BatchKey(int depth, float alpha, ::BatchClippingState const& clippingState);
41
42 MCAPI BatchKey(
43 int depth,
44 float alpha,
45 ::mce::Color const& color,
46 ::ResourceLocation const& resourceLocation,
47 ::BatchClippingState const& clippingState,
48 ::UIMaterialType materialType
49 );
50
51 MCAPI bool operator==(::BatchKey const& rhs) const;
52
53 MCAPI ~BatchKey();
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor(::BatchKey&& rha);
60
61 MCAPI void* $ctor(::BatchKey const& rha);
62
63 MCAPI void* $ctor(int depth, float alpha, ::BatchClippingState const& clippingState);
64
65 MCAPI void* $ctor(
66 int depth,
67 float alpha,
68 ::mce::Color const& color,
69 ::ResourceLocation const& resourceLocation,
70 ::BatchClippingState const& clippingState,
71 ::UIMaterialType materialType
72 );
73 // NOLINTEND
74
75public:
76 // destructor thunk
77 // NOLINTBEGIN
78 MCAPI void $dtor();
79 // NOLINTEND
80};
Definition BatchKey.h:5