blob: 5635fa1116b4961a05f57b2b6659e6b456170efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include "config/types.h"
#include <glad/gl.h>
class Vertex {
public:
#ifndef __cpp_aggregate_paren_init
constexpr Vertex(Position3D pos, TextureRelCoord texCoord, Normal3D normal, RGBA colour = {}, GLuint material = 0) :
pos {std::move(pos)}, texCoord {std::move(texCoord)}, normal {std::move(normal)}, colour {std::move(colour)},
material {material}
{
}
#endif
bool operator==(const Vertex &) const = default;
Position3D pos {};
TextureRelCoord texCoord {};
Normal3D normal {};
RGBA colour {};
GLuint material {};
};
|