X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcolorcurve.cpp;h=f11b83ae2df83258ddf3b77a27e7a2680b847388;hb=c1e297b01f07be122e9909a1ae9c04f0c51dfc21;hp=40f61b813dd088171beeea361b92dc91dac11a6e;hpb=18240e2bb031551e9c72a55c7d974904d209760a;p=libs%2Fgl.git diff --git a/source/colorcurve.cpp b/source/colorcurve.cpp index 40f61b81..f11b83ae 100644 --- a/source/colorcurve.cpp +++ b/source/colorcurve.cpp @@ -18,7 +18,7 @@ ColorCurve::ColorCurve(): shdata.uniform("source", 0); shdata.uniform("curve", 1); - curve.storage(LUMINANCE, 256); + curve.storage(LUMINANCE, 256, 1); curve.set_min_filter(LINEAR); curve.set_wrap(CLAMP_TO_EDGE); texturing.attach(1, curve); @@ -41,15 +41,6 @@ void ColorCurve::set_brightness_response(float b) shdata.uniform("brightness_response", b, t, pow(t, b)); } -void ColorCurve::set_peak(float) -{ -} - -void ColorCurve::set_brightness(float b) -{ - set_brightness_response(1/b); -} - void ColorCurve::set_gamma(float g) { if(g<0.1 || g>10)