25#ifndef TGUI_CANVAS_OPENGL3_HPP
26#define TGUI_CANVAS_OPENGL3_HPP
28#include <TGUI/Backend/Renderer/OpenGL3/BackendTextureOpenGL3.hpp>
30#if !TGUI_BUILD_AS_CXX_MODULE
31 #include <TGUI/Backend/Renderer/BackendRenderTarget.hpp>
32 #include <TGUI/Widgets/CanvasBase.hpp>
37TGUI_MODULE_EXPORT
namespace tgui
67 using Ptr = std::shared_ptr<CanvasOpenGL3>;
68 using ConstPtr = std::shared_ptr<const CanvasOpenGL3>;
70 static constexpr const char StaticWidgetType[] =
"CanvasOpenGL3";
79 CanvasOpenGL3(
const char* typeName = StaticWidgetType,
bool initRenderer =
true);
130 using Widget::setSize;
160 unsigned int m_textureId = 0;
161 unsigned int m_frameBuffer = 0;
164 std::shared_ptr<BackendTextureOpenGL3> m_backendTexture = std::make_shared<BackendTextureOpenGL3>();
Base class for render targets.
Definition BackendRenderTarget.hpp:46
This class is used as base class for the backend-specific canvas widgets.
Definition CanvasBase.hpp:38
CanvasOpenGL3 provides a way to directly render OpenGL contents on a widget.
Definition CanvasOpenGL3.hpp:64
static CanvasOpenGL3::Ptr copy(const CanvasOpenGL3::ConstPtr &canvas)
Makes a copy of another canvas.
std::shared_ptr< const CanvasOpenGL3 > ConstPtr
Shared constant widget pointer.
Definition CanvasOpenGL3.hpp:68
CanvasOpenGL3(const CanvasOpenGL3 ©)
Copy constructor.
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
std::shared_ptr< CanvasOpenGL3 > Ptr
Shared widget pointer.
Definition CanvasOpenGL3.hpp:67
~CanvasOpenGL3() override
Destructor.
unsigned int bindFramebuffer() const
Binds the framebuffer of the canvas.
void setSize(const Layout2d &size) override
Changes the size of the widget.
CanvasOpenGL3(CanvasOpenGL3 &©)=default
Default move constructor.
static CanvasOpenGL3::Ptr create(const Layout2d &size={"100%", "100%"})
Creates a new canvas widget.
Class to store the position or size of a widget.
Definition Layout.hpp:323
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
States used for drawing.
Definition RenderStates.hpp:38