diff options
author | rodri <rgl@antares-labs.eu> | 2024-09-27 10:48:47 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2024-09-27 10:48:47 +0000 |
commit | 50d107f27c8ee8980693f54d0fadbdd641516e2a (patch) | |
tree | 9d8b4af71a95876f6f114124c5880d5c838bf4d2 /marshal.c | |
parent | 39e63bec577e4f5e105a7922a7f7d580cb3d76ae (diff) | |
download | libgraphics-50d107f27c8ee8980693f54d0fadbdd641516e2a.tar.gz libgraphics-50d107f27c8ee8980693f54d0fadbdd641516e2a.tar.bz2 libgraphics-50d107f27c8ee8980693f54d0fadbdd641516e2a.zip |
remove pointless warning.
it's a leftover from a previous version of the parser.
Diffstat (limited to 'marshal.c')
-rw-r--r-- | marshal.c | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -227,24 +227,6 @@ rmmtltab(Mtltab *t) } } -/* - * TODO if materials are inserted between primitive declarations - * references to those materials from early primitives can cause - * out-of-bounds accesses. find a solution. - * - * example: - * - * mtl A { - * diffuse: 1 0 0 - * } - * prim ... A - * mtl B { - * diffuse: 1 0 0 - * } - * prim ... B - * - * now the reference to A is probably wrong because of realloc. - */ Model * readmodel(int fd) { |