Lines Matching refs:vertex
42 static inline void set(Vertex* vertex, float x, float y) { in set()
43 vertex->x = x; in set()
44 vertex->y = y; in set()
47 static inline void set(Vertex* vertex, Vector2 val) { set(vertex, val.x, val.y); } in set()
49 static inline void copyWithOffset(Vertex* vertex, const Vertex& src, float x, float y) { in copyWithOffset()
50 set(vertex, src.x + x, src.y + y); in copyWithOffset()
64 static inline void set(TextureVertex* vertex, float x, float y, float u, float v) { in set()
65 *vertex = {x, y, u, v}; in set()
68 static inline void setUV(TextureVertex* vertex, float u, float v) { in setUV()
69 vertex[0].u = u; in setUV()
70 vertex[0].v = v; in setUV()