diff options
-rw-r--r-- | src/com/jogamp/opencl/demos/gamma/CLSimpleGammaCorrection.java | 6 |
1 files changed, 3 insertions, 3 deletions
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(); |