Class for storing textures.
MYGL_EXPORT void bind() const
Binds this texture to GL_TEXTURE_2D.
MYGL_EXPORT unsigned int getId() const noexcept
Return a texture's OpenGL id.
MYGL_EXPORT void setBorderColor(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha=255)
Sets the border color used with GL_CLAMP_TO_BORDER wrapping method.
MYGL_EXPORT void setTextureWrapMethod(Axis axis, GLenum method)
Sets the wrapping method for a given axis.
MYGL_EXPORT unsigned int getWidth() const noexcept
Gives the texture's original width in pixels.
MYGL_EXPORT unsigned int getHeight() const noexcept
Gives the texture's original height in pixels.
MYGL_EXPORT bool load(const std::string &filename)
Loads a texture, this texture should not be used if the operation fails.
MYGL_EXPORT Texture() noexcept=default
Creates an empty texture whiwh is not usable until an image has been loaded.