gegl r2516 - trunk/docs



Author: ok
Date: Tue Jul  1 19:10:10 2008
New Revision: 2516
URL: http://svn.gnome.org/viewvc/gegl?rev=2516&view=rev

Log:
* index-static.txt.in: change acidentaly left out of commit.


Modified:
   trunk/docs/ChangeLog
   trunk/docs/index-static.txt.in

Modified: trunk/docs/index-static.txt.in
==============================================================================
--- trunk/docs/index-static.txt.in	(original)
+++ trunk/docs/index-static.txt.in	Tue Jul  1 19:10:10 2008
@@ -7,7 +7,7 @@
 ----
 GEGL (Generic Graphics Library) is a graph based image processing framework.
 
-GEGL provides infratructure to do demand based cached non destructive image
+GEGL provides infrastructure to do demand based cached non destructive image
 editing on larger than RAM buffers. Through link:http://gegl.org/babl/[babl]
 it provides support for a wide range of color models and pixel storage formats
 for input and output.
@@ -39,7 +39,7 @@
         mask.
       * link:operations.html#cat_color[Color correction].
       * Text rendering using cairo and http://pango.org/[pango].
-      * Most operations operates in
+      * Most operations operate in
         http://en.wikipedia.org/wiki/ScRGB_color_space[scRGB] (using 32bit
         linear light RGBA)
   - Bounding box based hit detection.
@@ -62,7 +62,7 @@
 
 Gallery
 ~~~~~~~
-For examples of what GEGLs rendering engine currently can do look at the
+For examples of what GEGL's rendering engine currently can do look at the
 link:gallery/index.html[gallery].
 
 Bugzilla
@@ -163,9 +163,9 @@
 -------------
 With GEGL you chain together image processing operations represented by nodes
 into a graph. GEGL provides such operations for loading and storing images,
-adjusting colors, filtering images in different ways, translating images and
+adjusting colors, filtering in different ways, transforming and compositing images.
 
-GEGLs programmer/user interface is a Directed Acyclic Graph of nodes. The DAG
+GEGL's programmer/user interface is a Directed Acyclic Graph of nodes. The DAG
 expresses a processing chain of operations. A DAG, or any node in it, expresses
 a composited and processed image. It is possible to request rectangular regions
 in a wide range of pixel formats from any node.
@@ -196,8 +196,8 @@
 
 Hello world
 ^^^^^^^^^^^
-The follwing is a small sample GEGL application that animates a zoom on a
-mandelbrot fractal compile it with:
+The following is a small sample GEGL application that animates a zoom on a
+mandelbrot fractal. compile it with:
 
  $ gcc hello-world.c `pkg-config --libs --cflags gegl` -o hello-world
 
@@ -241,10 +241,10 @@
 
 link:gegl-operation-composer.h.html[GeglOperationComposer]::
     Composer operations are operations that take two inputs named 'input' and
-    'aux' and writes their output to the output pad 'output'
+    'aux' and write their output to the output pad 'output'
 
 link:gegl-operation-point-composer.h.html[GeglOperationPointComposer]::
-    A baseclass for composer functions where the output pixels values depends
+    A baseclass for composer functions where the output pixels' values depends
     only on the values of the single corresponding input and aux pixels.
 
 link:gegl-operation-source.h.html[GeglOperationSource]::
@@ -378,7 +378,7 @@
 connection::
     A link/pipe routing image flow between operations within the graph goes
     from an output pad to an input pad, in graph glossary this might also be
-    reffered to as an edge.
+    referred to as an edge.
 DAG::
     Directed Acyclic Graph, see graph.
 graph::
@@ -400,8 +400,8 @@
   a place where data can be requested, multiple input pads can reference
   the same output pad.
 property::
-    Properties are what control the behavior of operations, through the use of
-    GParamSpecs properties are self documenting through introspection.
+    Properties are what controls the behavior of operations. Through the use of
+    GParamSpecs properties they are self documenting via introspection.
 
 Directory overview
 ~~~~~~~~~~~~~~~~~~



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]