From c51e38efa380ec5af810c0dfed9171667ec335dc Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 3 Apr 2021 21:41:27 +1100 Subject: [PATCH] Fixed issue with quad buffer. --- src/engine/display/primitives/quad.c | 9 +++++++-- src/engine/file/asset.h | 3 +++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/engine/display/primitives/quad.c b/src/engine/display/primitives/quad.c index c18d10dc..331b3213 100644 --- a/src/engine/display/primitives/quad.c +++ b/src/engine/display/primitives/quad.c @@ -27,8 +27,13 @@ void quadBuffer(primitive_t *primitive, vertices[3].x = x1, vertices[3].y = y1, vertices[3].z = 0; vertices[3].u = u1, vertices[3].v = v1; - indices[0] = (indice_t)0, indices[1] = (indice_t)1, indices[2] = (indice_t)2; - indices[3] = (indice_t)1, indices[4] = (indice_t)2, indices[5] = (indice_t)3; + indices[0] = (indice_t)verticeStart + 0; + indices[1] = (indice_t)verticeStart + 1; + indices[2] = (indice_t)verticeStart + 2; + + indices[3] = (indice_t)verticeStart + 1; + indices[4] = (indice_t)verticeStart + 2; + indices[5] = (indice_t)verticeStart + 3; primitiveBufferVertices(primitive, verticeStart, 4, vertices); primitiveBufferIndices(primitive, indiceStart, 6, indices); diff --git a/src/engine/file/asset.h b/src/engine/file/asset.h index 695c0a60..dbdf905c 100644 --- a/src/engine/file/asset.h +++ b/src/engine/file/asset.h @@ -79,5 +79,8 @@ shader_t * assetShaderLoad(char *fileVertex, char *fileFragment); /** * Load a texture from a PNG file. + * + * @param fileName The fike path of the PNG image. + * @return The loaded texture object. */ texture_t * assetTextureLoad(char *fileName); \ No newline at end of file