]> git.tdb.fi Git - libs/gl.git/blobdiff - source/colorcurve.cpp
Separate abstract pixel compositions from concrete pixel formats
[libs/gl.git] / source / colorcurve.cpp
index f11b83ae2df83258ddf3b77a27e7a2680b847388..1f6f7bf9ec1f77df01f8db326b4bafa9c5e94ce8 100644 (file)
@@ -18,9 +18,10 @@ ColorCurve::ColorCurve():
        shdata.uniform("source", 0);
        shdata.uniform("curve", 1);
 
-       curve.storage(LUMINANCE, 256, 1);
-       curve.set_min_filter(LINEAR);
-       curve.set_wrap(CLAMP_TO_EDGE);
+       curve.storage(LUMINANCE8, 256, 1);
+       Sampler &sampler = curve.get_default_sampler();
+       sampler.set_min_filter(LINEAR);
+       sampler.set_wrap(CLAMP_TO_EDGE);
        texturing.attach(1, curve);
 
        set_exposure_adjust(0.0f);