opengl-playground/src/vertex.cpp

11 lines
156 B
C++

#include <opengl-playground/vertex.hpp>
Vertex operator+(Vertex const &a, Vertex const &b)
{
Vertex out = a;
out.Position + b.Position;
return out;
}