aboutsummaryrefslogtreecommitdiffstats
path: root/yage/base/texture.h
blob: cc9dc85787e41db068b853af846ca682d847971a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ----------------------------------------------------------------------------
 * texture.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#ifndef GL_TEXTURE_H
#define GL_TEXTURE_H

#include <glad/glad.h>

namespace yage
{

struct Texture {
    GLuint id;
    int width;
    int height;

    Texture(GLuint id_i, int width_i, int height_i)
        : id(id_i), width(width_i), height(height_i)
    {
    }
};

} // namespace yage

#endif