From f61ed34e149650f076d775554cd9de04a1baff3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Fri, 9 Oct 2015 21:34:13 +0200 Subject: [PATCH] fix Blur1D of Tests example --- Examples/Tests/Blur1D.js | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/Examples/Tests/Blur1D.js b/Examples/Tests/Blur1D.js index 5b2a42b..4465356 100644 --- a/Examples/Tests/Blur1D.js +++ b/Examples/Tests/Blur1D.js @@ -9,19 +9,17 @@ const shaders = GL.Shaders.create({ }); module.exports = GL.createComponent( - ({ width, height, direction, minBlur, maxBlur, blurMap, offset, children }) => - - {children} - , - { displayName: "Blur1D" }); + ({ width, height, direction, children }) => + + {children} + +, { + displayName: "Blur1D" +});