summaryrefslogtreecommitdiff
path: root/indra/integration_tests
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-12-30 20:33:33 -0800
committerMerov Linden <merov@lindenlab.com>2013-12-30 20:33:33 -0800
commit08a798bb1d88708765041adf21a784911842f101 (patch)
treede293ee4e0f17cc2f40de594d00e581428708d19 /indra/integration_tests
parent7372afaae4aa7097ffad1e9c070b8b9d9a611f62 (diff)
ACME-1236 : WIP : Implement saturation/desaturation transform filter, add it to llimage_libtest for testing
Diffstat (limited to 'indra/integration_tests')
-rwxr-xr-xindra/integration_tests/llimage_libtest/llimage_libtest.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/integration_tests/llimage_libtest/llimage_libtest.cpp b/indra/integration_tests/llimage_libtest/llimage_libtest.cpp
index e485136f58..cbd6ccebbf 100755
--- a/indra/integration_tests/llimage_libtest/llimage_libtest.cpp
+++ b/indra/integration_tests/llimage_libtest/llimage_libtest.cpp
@@ -602,6 +602,10 @@ int main(int argc, char** argv)
{
raw_image->filterGrayScale();
}
+ else if (filter_name == "saturate")
+ {
+ raw_image->filterSaturate(2.0f);
+ }
// Save file
if (out_file != out_end)