diff options
author | sanine-a <sanine.not@pm.me> | 2020-10-31 22:43:41 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-10-31 22:43:41 -0500 |
commit | 42d42c9ba3b741d167eaa2196c686962559686f1 (patch) | |
tree | 46f9d9c51d1d4fe1ccbacf1d1f73c066e93dfc32 /src/primitives/primitives.c | |
parent | ad75604ec79d70d328595f114e65bac80db9999f (diff) |
add basic framebuffer operations
Diffstat (limited to 'src/primitives/primitives.c')
-rw-r--r-- | src/primitives/primitives.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/primitives/primitives.c b/src/primitives/primitives.c index 8293d4d..d499248 100644 --- a/src/primitives/primitives.c +++ b/src/primitives/primitives.c @@ -60,7 +60,7 @@ honey_result honey_mesh_new_textured_plane(honey_mesh* mesh, unsigned int indices[] = { 0, 1, 2, - 1, 2, 3 }; + 3, 2, 1 }; unsigned int attrib_sizes[] = { 3, 3, 2 }; |