From f6567d214dc65aa8af982537e7f70f7e1d93a208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Wed, 26 Jun 2019 21:17:48 +0200 Subject: [PATCH] Document --- small3dlib.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/small3dlib.h b/small3dlib.h index 4390ddc..5d9554f 100644 --- a/small3dlib.h +++ b/small3dlib.h @@ -15,6 +15,11 @@ by the library to render the frames). Also define S3L_RESOLUTION_X and S3L_RESOLUTION_Y. + You'll also need to decide what rendering strategy and other settings you + want to use, depending on your specific usecase. You may want to use a + z-buffer (full or reduced, S3L_Z_BUFFER), sorted-drawing (S3L_SORT), or even + none of these. See the description of the options in this file. + -------------------- This work's goal is to never be encumbered by any exclusive intellectual @@ -124,13 +129,6 @@ #include -/* === PRESETS === - These can be used to quickly set a predefined library behavior. */ - -// TODO - -// --------------- - #ifndef S3L_RESOLUTION_X #define S3L_RESOLUTION_X 640 ///< Redefine to screen x resolution. #endif