Fixed issue with quad buffer.

This commit is contained in:
2021-04-03 21:41:27 +11:00
parent 7e62552b86
commit c51e38efa3
2 changed files with 10 additions and 2 deletions

View File

@ -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);

View File

@ -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);