Home
last modified time | relevance | path

Searched refs:scriptC (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/
DRefocusFilterF32.java61 scriptC.destroy(); in destroy()
67 scriptC = new ScriptC_layered_filter_fast_f32(renderScript); in initializeScriptAndBuffers()
75 renderScript, scriptC); in initializeScriptAndBuffers()
76 buffers.initializeRenderScript(focalLayer, scriptC); in initializeScriptAndBuffers()
85 scriptC.forEach_PackOutputImage(buffers.outAllocation); in extractResultImage()
101 scriptC.forEach_PackSharpImage(mAllocation); in extractSharpImage()
116 scriptC.forEach_PackFuzzyImage(mAllocation); in extractFuzzyImage()
126 scriptC.invoke_SetTargetLayer(layerInfo.frontDepth, layerInfo.backDepth); in setTargetLayer()
131 scriptC.invoke_SetBlendInfo(dilationRadius); in setBlendInfo()
146 scriptC.bind_g_kernel_info(kernelData.getKernelInfo()); in setKernelData()
[all …]
DImageBuffersForRenderScriptF32.java61 RenderScript renderScript, ScriptC_layered_filter_fast_f32 scriptC) { in ImageBuffersForRenderScriptF32() argument
75 scriptC.bind_g_sharp_image_buffer(sharpImageAllocation); in ImageBuffersForRenderScriptF32()
76 scriptC.bind_g_fuzzy_image_buffer(fuzzyImageAllocation); in ImageBuffersForRenderScriptF32()
77 scriptC.bind_g_integral_image_buffer(integralImageAllocation); in ImageBuffersForRenderScriptF32()
89 ScriptC_layered_filter_fast_f32 scriptC) { in initializeRenderScript() argument
94 scriptC.invoke_InitializeF32(imageWidthPadded, imageHeightPadded, in initializeRenderScript()
103 scriptC.forEach_UnpackInputImage(inAllocation); in initializeRenderScript()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/
DRefocusFilterd1new.java61 scriptC.destroy(); in destroy()
67 scriptC = new ScriptC_layered_filter_fast_d1new(renderScript); in initializeScriptAndBuffers()
75 renderScript, scriptC); in initializeScriptAndBuffers()
76 buffers.initializeRenderScript(focalLayer, scriptC); in initializeScriptAndBuffers()
85 scriptC.forEach_PackOutputImage(buffers.outAllocation); in extractResultImage()
101 scriptC.forEach_PackSharpImage(mAllocation); in extractSharpImage()
115 scriptC.forEach_PackFuzzyImage(mAllocation); in extractFuzzyImage()
124 scriptC.invoke_SetTargetLayer(layerInfo.frontDepth, layerInfo.backDepth); in setTargetLayer()
129 scriptC.invoke_SetBlendInfo(dilationRadius); in setBlendInfo()
143 scriptC.set_g_kernel_stack(kernelData.stackAllocation); in setKernelData()
[all …]
DImageBuffersForRenderScriptd1new.java72 … RenderScript renderScript, ScriptC_layered_filter_fast_d1new scriptC) { in ImageBuffersForRenderScriptd1new() argument
96 scriptC.set_g_sharp_RGBA(sharpRGBAAllocation); in ImageBuffersForRenderScriptd1new()
97 scriptC.set_g_fuzzy_RGBA(fuzzyRGBAAllocation); in ImageBuffersForRenderScriptd1new()
98 scriptC.set_g_integral_RGBA(integralRGBAAllocation); in ImageBuffersForRenderScriptd1new()
100 scriptC.set_g_sharp_actual_depth(sharpActualDepthAllocation); in ImageBuffersForRenderScriptd1new()
101 scriptC.set_g_sharp_active(sharpActiveAllocation); in ImageBuffersForRenderScriptd1new()
102 scriptC.set_g_sharp_matte(sharpMatteAllocation); in ImageBuffersForRenderScriptd1new()
103 scriptC.set_g_sharp_dilated_depth(sharpDilatedDepthAllocation); in ImageBuffersForRenderScriptd1new()
116 ScriptC_layered_filter_fast_d1new scriptC) { in initializeRenderScript() argument
120 scriptC.invoke_InitializeFast(imageWidthPadded, imageHeightPadded, in initializeRenderScript()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DRefocusFilter.java39 protected ScriptType scriptC; field in RefocusFilter