Searched refs:getInPixelsAllocation (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
D | ImageFilterRS.java | 59 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()
|
D | ImageFilterChanSat.java | 69 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()
|
D | ImageFilterGrad.java | 79 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()
|
D | ImageFilterSharpen.java | 91 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()
|
D | ImageFilterVignette.java | 88 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/ |
D | PipelineInterface.java | 27 public Allocation getInPixelsAllocation(); in getInPixelsAllocation() method
|
D | CachingPipeline.java | 475 public synchronized Allocation getInPixelsAllocation() { in getInPixelsAllocation() method in CachingPipeline
|