MyGL
Loading...
Searching...
No Matches
Texture.hpp
1#ifndef MYGL_TEXTURE
2#define MYGL_TEXTURE
3
4#include "mygl_export.h"
5
6#include <glad/gl.h>
7#include <stb_image.h>
8
9#include "Color.hpp"
10#include "Image.hpp"
11
12#include <memory>
13#include <string>
14
15namespace my
16{
20 class Texture
21 {
22 private:
23 std::shared_ptr<unsigned int> p_textureId;
24 unsigned int m_width = 0;
25 unsigned int m_height = 0;
26
27 void create(const Image& image);
28
29 public:
30 enum class Axis
31 {
32 x,
33 y,
34 s,
35 t
36 };
37
41 MYGL_EXPORT Texture() noexcept = default;
42
47 MYGL_EXPORT Texture(const std::string& filename);
48
53 MYGL_EXPORT Texture(const Image& image);
54
61 MYGL_EXPORT Texture(unsigned int textureId, unsigned int width, unsigned int height);
62
63 MYGL_EXPORT ~Texture() = default;
64
70 MYGL_EXPORT bool load(const std::string& filename);
71
77 MYGL_EXPORT bool load(const Image& image);
78
83 MYGL_EXPORT unsigned int getId() const noexcept;
84
89 MYGL_EXPORT unsigned int getWidth() const noexcept;
90
95 MYGL_EXPORT unsigned int getHeight() const noexcept;
96
100 MYGL_EXPORT void bind() const;
101
107 MYGL_EXPORT void setTextureWrapMethod(Axis axis, GLenum method);
108
116 MYGL_EXPORT void setBorderColor(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha = 255);
117
122 MYGL_EXPORT void setBorderColor(const Color& color);
123 };
124
125} // namespace my
126
127#endif // MYGL_TEXTURE
Class for storing color objects.
Definition Color.hpp:17
A class for manipulating imges.
Definition Image.hpp:15
Class for storing textures.
Definition Texture.hpp:21
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.
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10