From 12b828d006ed24f41afcf181f1e9863e982cfd1d Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Mon, 7 Feb 2011 14:16:15 +0100 Subject: fixed typo in window title. --- src/com/jogamp/opencl/demos/gamma/CLSimpleGammaCorrection.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/com') diff --git a/src/com/jogamp/opencl/demos/gamma/CLSimpleGammaCorrection.java b/src/com/jogamp/opencl/demos/gamma/CLSimpleGammaCorrection.java index 1845cbc..2191f70 100644 --- a/src/com/jogamp/opencl/demos/gamma/CLSimpleGammaCorrection.java +++ b/src/com/jogamp/opencl/demos/gamma/CLSimpleGammaCorrection.java @@ -115,15 +115,15 @@ public class CLSimpleGammaCorrection { // a few gamma corrected versions float gamma = 0.5f; gammaCorrection(gamma, queue, kernel, buffer, localWorkSize, globalWorkSize); - show(createImage(image.getWidth(), image.getHeight(), buffer), image.getWidth()/2, 50, "corrected with gama="+gamma); + show(createImage(image.getWidth(), image.getHeight(), buffer), image.getWidth()/2, 50, "gamma="+gamma); gamma = 1.5f; gammaCorrection(gamma, queue, kernel, buffer, localWorkSize, globalWorkSize); - show(createImage(image.getWidth(), image.getHeight(), buffer), image.getWidth()/2*2, 50, "corrected with gama="+gamma); + show(createImage(image.getWidth(), image.getHeight(), buffer), image.getWidth()/2*2, 50, "gamma="+gamma); gamma = 2.0f; gammaCorrection(gamma, queue, kernel, buffer, localWorkSize, globalWorkSize); - show(createImage(image.getWidth(), image.getHeight(), buffer), image.getWidth()/2*3, 50, "corrected with gama="+gamma); + show(createImage(image.getWidth(), image.getHeight(), buffer), image.getWidth()/2*3, 50, "gamma="+gamma); }finally{ context.release(); -- cgit v1.2.3