summaryrefslogtreecommitdiff
path: root/include/llmr/geometry/icon_buffer.hpp
blob: 6bb0ec30c14ab0575c57e8047818418092fd5f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef LLMR_GEOMETRY_ICON_BUFFER
#define LLMR_GEOMETRY_ICON_BUFFER

#include "buffer.hpp"

namespace llmr {

    class IconVertexBuffer : public Buffer<
    4 + // int16 x/y coordinates per vertex (== 4 bytes)
    4   // uint16 x/y coordinates of icon in sprite (== 4 bytes)
    > {
    public:
        typedef int16_t vertex_type;

        void add(vertex_type x, vertex_type y, uint16_t tx, uint16_t ty);
    };

}

#endif