am cf8e6778: Merge "Handle updates to C++ API." into klp-dev

* commit 'cf8e6778c28319b6c5357a43831ebf1a41b56e96':
  Handle updates to C++ API.
This commit is contained in:
Tim Murray
2013-08-20 11:30:38 -07:00
committed by Android Git Automerger

View File

@@ -737,7 +737,7 @@ void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, int
}
mRsElement = RSC::Element::A_8(mRs);
mRsScript = new RSC::ScriptIntrinsicBlur(mRs, mRsElement);
mRsScript = RSC::ScriptIntrinsicBlur::create(mRs, mRsElement);
}
RSC::sp<const RSC::Type> t = RSC::Type::create(mRs, mRsElement, width, height, 0);
@@ -749,7 +749,8 @@ void FontRenderer::blurImage(uint8_t** image, int32_t width, int32_t height, int
outImage);
mRsScript->setRadius(radius);
mRsScript->blur(ain, aout);
mRsScript->setInput(ain);
mRsScript->forEach(aout);
// replace the original image's pointer, avoiding a copy back to the original buffer
free(*image);