0
그룹화와 관련된 성능 향상을 위해 RenderScript ScriptGroup에 함께 그룹화하려는 세 가지 스크립트 내장 함수가 있습니다.다음 ScriptIntrinsics에서 Renderscript ScriptGroup을 만드는 방법은 무엇입니까?
나는 ScriptGroup에서 각 스크립트의 입력을 다른 스크립트의 출력으로부터 설정해야한다는 것을 알고있다. Blur 내장 함수의 경우 어떻게 처리합니까? 예를 들어, blend2의 첫 번째 매개 변수에 blend1의 두 번째 매개 변수를 연결하는 방법은 무엇입니까? 또한 blend1의 첫 번째 매개 변수를 흐림에 연결하는 방법은 무엇입니까?
blend1.forEachSrcOver(inAllocation, pass2ColorAllocation);
blur.forEach(inAllocation);
blend2.forEachSrcOver(pass2ColorAllocation, inAllocation);