Merge: roberto -> main

This commit is contained in:
PedroEdiaz
2024-10-22 19:26:10 -06:00
parent b50fbf9d2d
commit 7787daa2da
6 changed files with 122 additions and 49 deletions

View File

@@ -4,7 +4,7 @@
error of the shaders.
*/
/* #define DEBUG */
/* #define DEBUG */
typedef const void * window_t;
typedef unsigned int id_t;
@@ -32,9 +32,10 @@ void close_window(window_t window);
d: array of floats with the vertex data.
n: array of floats with the normal data.
coordanate: the number of the 3 axis that we are displaying.
m: Dimention of mesh
*/
mesh_t create_mesh( float * d, float * n, unsigned char * coordanate );
mesh_t create_mesh( float * d, float * n, unsigned char * coordanate, unsigned char m );
void destroy_mesh(mesh_t p);