aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/texture.h
blob: 6f61afd3d42bd0f9416aee959168438ba4145085 (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
31
32
/* ----------------------------------------------------------------------------
 * texture.h
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file 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() = default;

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

} // namespace yage

#endif