diff options
author | Michael Bien <[email protected]> | 2011-02-07 14:16:15 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-02-07 14:16:15 +0100 |
commit | 12b828d006ed24f41afcf181f1e9863e982cfd1d (patch) | |
tree | 5f60dbd7d56a099bd64346e3e4534bbf44d4e8d1 | |
parent | 8eb54b30e8d3e3b5ef9c597eca6a9b90c5ae6d31 (diff) |
fixed typo in window title.
-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(); |