TDME2 1.9.121
GUIFrameBufferNode.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
15#include <tdme/gui/GUI.h>
16
18
30using tdme::gui::GUI;
31
32GUIFrameBufferNode::GUIFrameBufferNode(
33 GUIScreenNode* screenNode,
34 GUIParentNode* parentNode,
35 const string& id,
36 GUINode_Flow* flow,
37 const GUINode_Alignments& alignments,
38 const GUINode_RequestedConstraints& requestedConstraints,
39 const GUIColor& backgroundColor,
40 const string& backgroundImage,
41 const GUINode_Scale9Grid& backgroundImageScale9Grid,
42 const GUIColor& backgroundImageEffectColorMul,
43 const GUIColor& backgroundImageEffectColorAdd,
44 const GUINode_Border& border,
45 const GUINode_Padding& padding,
46 const GUINodeConditions& showOn,
47 const GUINodeConditions& hideOn,
48 FrameBuffer* frameBuffer,
49 const RequestedDimensionConstraints& requestedDimensionConstraints,
50 bool mirrorX,
51 bool mirrorY,
52 const GUIColor& effectColorMul,
53 const GUIColor& effectColorAdd,
54 const GUINode_Scale9Grid& scale9Grid,
55 const GUINode_Clipping& clipping,
56 const string& mask,
57 float maskMaxValue):
59 screenNode,
60 parentNode,
61 id,
62 flow,
63 alignments,
64 requestedConstraints,
65 backgroundColor,
66 backgroundImage,
67 backgroundImageScale9Grid,
68 backgroundImageEffectColorMul,
69 backgroundImageEffectColorAdd,
70 border,
71 padding,
72 showOn,
73 hideOn,
74 requestedDimensionConstraints,
75 mirrorX,
76 mirrorY,
77 effectColorMul,
78 effectColorAdd,
79 scale9Grid,
80 clipping,
81 mask,
82 maskMaxValue
83 )
84{
85 this->setFrameBuffer(frameBuffer);
86}
87
89{
90 return "frame-buffer";
91}
92
94{
96}
97
99 return frameBuffer;
100}
101
103 if (frameBuffer == nullptr) {
104 textureId = 0;
105 textureWidth = 0;
106 textureHeight = 0;
107 return;
108 }
112}
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
int32_t getColorBufferTextureId()
Definition: FrameBuffer.h:97
GUI module class.
Definition: GUI.h:66
void dispose() override
Dispose node.
void setFrameBuffer(FrameBuffer *frameBuffer)
Set frame buffer.
GUI element node conditions.
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void dispose() override
Dispose node.
GUI node border entity.
GUI node clipping entity.
GUI node padding entity.
GUI node scale 9 grid entity.