frolix

Results 1 issues of frolix

In WorkerUtils.kt fun blurBitmap Change code ``` rsContext = RenderScript.create(applicationContext, RenderScript.ContextType.DEBUG) val inAlloc = Allocation.createFromBitmap(rsContext, bitmap) val outAlloc = Allocation.createTyped(rsContext, inAlloc.type) val theIntrinsic = ScriptIntrinsicBlur.create(rsContext, Element.U8_4(rsContext)) theIntrinsic.apply { setRadius(10f) theIntrinsic.setInput(inAlloc)...