aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/texture.h
blob: 2eae8bf48409385b0887ff808c8334cc4b32f10a (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
/** ---------------------------------------------------------------------------
 * @file: 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() : id(0), width(0), height(0) {}

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

} // namespace yage

#endif