From bcbb86c97a5fbfad71d2c8487548bc8b2b7a122b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Thu, 27 Aug 2015 14:47:45 +0200 Subject: [PATCH] improve doc --- docs/README.md | 1 + docs/api/Component.md | 9 +++++++++ docs/examples/7.md | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 343c579..614b9bf 100644 --- a/docs/README.md +++ b/docs/README.md @@ -12,5 +12,6 @@ * [Progress Indicator](examples/4.md) * [Touch Responsive](examples/5.md) * [Animation](examples/6.md) + * [Blur (2-Pass)](examples/7.md) * [Advanced Effects Examples](examples/advancedeffects.md) * [Sharing code across gl-react and gl-react-native](universal.md) diff --git a/docs/api/Component.md b/docs/api/Component.md index 17efe18..f039edc 100644 --- a/docs/api/Component.md +++ b/docs/api/Component.md @@ -52,3 +52,12 @@ and use it: http://i.imgur.com/qM9BHCy.jpg ``` + +## Implementation notes + +Effects composition are made efficient using OpenGL Framebuffers: +the rendering is made in the same pipeline. + +[`gl-react-core`](https://github.com/ProjectSeptemberInc/gl-react-core) +contains the core logic (shared across both `gl-react` and `gl-react-native`) +that convert the Virtual DOM Tree into `data`, an object tree that represent the rendering pipeline. diff --git a/docs/examples/7.md b/docs/examples/7.md index 9f6d4c5..ce34c6c 100644 --- a/docs/examples/7.md +++ b/docs/examples/7.md @@ -1,4 +1,4 @@ -# Blur +# Blur (2-Pass) ```html