9 lines
121 B
Odin
9 lines
121 B
Odin
|
package vertex
|
||
|
|
||
|
import glm "core:math/linalg/glsl"
|
||
|
|
||
|
Vertex :: struct {
|
||
|
pos: glm.vec4,
|
||
|
texcoord: glm.vec2,
|
||
|
}
|