changeset 142:b729e5ea9687

Corrections in README.
author Mikhail Kryshen <mikhail@kryshen.net>
date Sun, 21 Apr 2013 04:36:43 +0400
parents 534d954de537
children 844921c135d6
files README.rst
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line diff
     1.1 --- a/README.rst	Mon Jan 07 20:02:47 2013 +0400
     1.2 +++ b/README.rst	Sun Apr 21 04:36:43 2013 +0400
     1.3 @@ -3,7 +3,9 @@
     1.4  =========
     1.5  
     1.6  Indyvon [INteractive DYnamic VisualizatiON] is an experimental GUI
     1.7 -library for Clojure.
     1.8 +library for Clojure. Indyvon allows you to combine and immediately
     1.9 +draw interactive objects without maintaining a scene graph or a
    1.10 +hierarchy of widgets.
    1.11  
    1.12  It is based around the idea of basically stateless UI elements defined
    1.13  by the following simple protocol::
    1.14 @@ -29,6 +31,6 @@
    1.15  transforms of visible layer contexts after every repaint for the time
    1.16  until the rendering of the next frame is complete.
    1.17  
    1.18 -It is possible to draw layers asynchronously in a separate thread by
    1.19 -wrapping them in ``async-layer`` which uses two off-screen buffers
    1.20 +It is possible to draw layers asynchronously in parallel threads by
    1.21 +wrapping them in ``async-layer``, which uses two off-screen buffers
    1.22  (triple buffering) to avoid locking.