From b35c6e90214eac9c2dceb3a1d82f30ce09ee6bc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Mon, 24 Jun 2019 00:20:58 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ff73e6d..545cdd6 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ TODO - Triangles provide barycentric coordinates, thanks to which practically anything that can be achieved with OpenGL can be achieved (texturing, shading, normal-mapping, texture fitering, transparency, PBR, shadow mapping, MIP mapping, ...). - Tested on multiple platforms (TODO). - Many compile-time options to tune the performance vs quality. +- Similar to OpenGL in principle, but simpler, easier to use, with higher-level features. - Well commented and formatted code. - Completely free of legal restrictions, do literally anything you want. From 489fb912fd5bac3f8b1fdaf0a76b25c2acf92b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Mon, 24 Jun 2019 00:24:43 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 545cdd6..6e1b5cd 100644 --- a/README.md +++ b/README.md @@ -48,4 +48,8 @@ TODO - Seeing buggy triangles flashing in front of the camera? With the limited 32bit arithmetic far-away things may be overflowing. Try to scale down the scene. If you also don't mind it, set `S3L_STRICT_NEAR_CULLING` to `1` -- this should probably solve it. - Seeing triangles disappear randomly in sorted modes? This is because the size of the memory for triangle sorting is limited by default -- increase `S3L_MAX_TRIANGLES_DRAWN`. -- Sorted mode sorts triangles before drawing, but sometimes you need to control the drawing order more precisely. This can be done by reordering the objects in the scene list or rendering the scene multiple times without clearing the screen. \ No newline at end of file +- Sorted mode sorts triangles before drawing, but sometimes you need to control the drawing order more precisely. This can be done by reordering the objects in the scene list or rendering the scene multiple times without clearing the screen. + +## license + +Everything is CC0 1.0 + a waiver of all other IP rights (including patents). Please share your own software as free and open-source. \ No newline at end of file