summary refs log tree commit diff
path: root/src/GFX/Texture.hpp
blob: ff8663416bca77c15f4cdacca3a6cda8f474d4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "Image/RawImage.hpp"

namespace MC::GFX {

class Texture {
public:
    explicit Texture(const Image::RawImage& image);

    void bind();
    void unbind();
private:
    uint32_t m_texture;
};

}