42 class TGUI_API BackendTexture
47 BackendTexture(
const BackendTexture&) =
delete;
48 BackendTexture(BackendTexture&&) =
delete;
49 BackendTexture& operator=(
const BackendTexture&) =
delete;
50 BackendTexture& operator=(BackendTexture&&) =
delete;
69 bool load(Vector2u size, std::unique_ptr<std::uint8_t[]> pixels,
bool smooth);
80 virtual bool loadTextureOnly(Vector2u size,
const std::uint8_t* pixels,
bool smooth);
121 Vector2u m_imageSize;
122 std::unique_ptr<std::uint8_t[]> m_pixels;
123 bool m_isSmooth =
true;
virtual void setSmooth(bool smooth)
Changes whether the smooth filter is enabled or not.
bool isTransparentPixel(Vector2u pixel) const
Checks if a certain pixel is transparent.
virtual bool loadTextureOnly(Vector2u size, const std::uint8_t *pixels, bool smooth)
Loads the texture from an array of 32-bits RGBA pixels, but don't take ownership of the pixels.
bool load(Vector2u size, std::unique_ptr< std::uint8_t[]> pixels, bool smooth)
Loads the texture from an array of 32-bits RGBA pixels.
Vector2u getSize() const
Returns the size of the entire image.
const std::uint8_t * getPixels() const
Returns a pointer to the pixels (read-only)
bool isSmooth() const
Returns whether the smooth filter is enabled or not.
virtual ~BackendTexture()=default
Virtual destructor.