diff options
author | Merov Linden <merov@lindenlab.com> | 2014-02-13 15:15:05 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-02-13 15:15:05 -0800 |
commit | a5366f06edf5aa1b75328e26011989eba7c601ca (patch) | |
tree | d59e759007efd85c03befc5a987dd6cb2dfbfc24 /indra/llimage/llimagefilter.cpp | |
parent | f95529b3f309f3ff24851697728c6c94a3218a2a (diff) |
ACME-1277 : Final set of filters, added a SnapshotFiltersEnabled debug setting
Diffstat (limited to 'indra/llimage/llimagefilter.cpp')
-rwxr-xr-x | indra/llimage/llimagefilter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llimage/llimagefilter.cpp b/indra/llimage/llimagefilter.cpp index 3d0c488768..6e9ea2f948 100755 --- a/indra/llimage/llimagefilter.cpp +++ b/indra/llimage/llimagefilter.cpp @@ -55,6 +55,7 @@ LLImageFilter::LLImageFilter(const std::string& file_path) : { // Load filter description from file llifstream filter_xml(file_path); + llinfos << "Merov : load filter : " << file_path << llendl; if (filter_xml.is_open()) { // Load and parse the file @@ -88,6 +89,7 @@ void LLImageFilter::executeFilter(LLPointer<LLImageRaw> raw_image) { mImage = raw_image; + llinfos << "Merov : execute filter on image size " << mImage->getWidth() << "x" << mImage->getHeight() << llendl; //std::cout << "Filter : size = " << mFilterData.size() << std::endl; for (S32 i = 0; i < mFilterData.size(); ++i) { |