Home
last modified time | relevance | path

Searched refs:getInPixelsAllocation (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DImageFilterRS.java59 protected Allocation getInPixelsAllocation() { in getInPixelsAllocation() method in ImageFilterRS
61 return pipeline.getInPixelsAllocation(); in getInPixelsAllocation()
122 if (getInPixelsAllocation() != null in apply()
123 && ((getInPixelsAllocation().getType().getX() != mLastInputWidth) in apply()
124 || (getInPixelsAllocation().getType().getY() != mLastInputHeight))) { in apply()
132 mLastInputWidth = getInPixelsAllocation().getType().getX(); in apply()
133 mLastInputHeight = getInPixelsAllocation().getType().getY(); in apply()
DImageFilterChanSat.java69 createFilter(res, scaleFactor, quality, getInPixelsAllocation()); in createFilter()
104 int width = getInPixelsAllocation().getType().getX(); in bindScriptValues()
105 int height = getInPixelsAllocation().getType().getY(); in bindScriptValues()
118 int width = getInPixelsAllocation().getType().getX(); in runFilter()
119 int height = getInPixelsAllocation().getType().getY(); in runFilter()
127 getInPixelsAllocation(), getOutPixelsAllocation()); in runFilter()
DImageFilterGrad.java79 createFilter(res, scaleFactor, quality, getInPixelsAllocation()); in createFilter()
114 int width = getInPixelsAllocation().getType().getX(); in bindScriptValues()
115 int height = getInPixelsAllocation().getType().getY(); in bindScriptValues()
127 int width = getInPixelsAllocation().getType().getX(); in runFilter()
128 int height = getInPixelsAllocation().getType().getY(); in runFilter()
156 getInPixelsAllocation(), getOutPixelsAllocation()); in runFilter()
DImageFilterSharpen.java91 int w = getInPixelsAllocation().getType().getX(); in bindScriptValues()
92 int h = getInPixelsAllocation().getType().getY(); in bindScriptValues()
103 mScript.set_gIn(getInPixelsAllocation()); in runFilter()
104 mScript.bind_gPixels(getInPixelsAllocation()); in runFilter()
105 mScript.forEach_root(getInPixelsAllocation(), getOutPixelsAllocation()); in runFilter()
DImageFilterVignette.java88 int w = getInPixelsAllocation().getType().getX(); in runFilter()
89 int h = getInPixelsAllocation().getType().getY(); in runFilter()
126 mScript.forEach_vignette(getInPixelsAllocation(), getOutPixelsAllocation()); in runFilter()
161 int width = getInPixelsAllocation().getType().getX(); in bindScriptValues()
162 int height = getInPixelsAllocation().getType().getY(); in bindScriptValues()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DPipelineInterface.java27 public Allocation getInPixelsAllocation(); in getInPixelsAllocation() method
DCachingPipeline.java475 public synchronized Allocation getInPixelsAllocation() { in getInPixelsAllocation() method in CachingPipeline