Home
last modified time | relevance | path

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

/frameworks/native/libs/renderengine/skia/filters/
DBlurFilter.cpp92 const float stepX = radiusByPasses; in generate() local
106 blurBuilder.uniform("in_blurOffset") = SkV2{stepX * kInputScale, stepY * kInputScale}; in generate()
117 blurBuilder.uniform("in_blurOffset") = SkV2{stepX * stepScale, stepY * stepScale}; in generate()
/frameworks/av/media/libstagefright/renderfright/gl/filters/
DBlurFilter.cpp138 const float stepX = radiusByPasses / (float)mCompositionFbo.getBufferWidth(); in prepare() local
146 glUniform2f(mBOffsetLoc, stepX, stepY); in prepare()
160 glUniform2f(mBOffsetLoc, stepX * i, stepY * i); in prepare()
/frameworks/native/libs/renderengine/gl/filters/
DBlurFilter.cpp138 const float stepX = radiusByPasses / (float)mCompositionFbo.getBufferWidth(); in prepare() local
146 glUniform2f(mBOffsetLoc, stepX, stepY); in prepare()
160 glUniform2f(mBOffsetLoc, stepX * i, stepY * i); in prepare()
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
DInteraction.java122 float stepX = (endX - startX) / STEP_COUNT; in createInterpolatedEventList() local
128 long deltaX = Math.round(j * stepX); in createInterpolatedEventList()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
DGestureManifoldTest.java136 float stepX = (float) deltaX / numSteps; in fillPath() local
142 (start.x + (stepX * (float) step)), in fillPath()
/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/
DPainting.kt195 val stepX = (s.x - x) / N in plot() constant
199 x += stepX in plot()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DGestureDescriptionTest.java66 float stepX = 2; in testSwipe_shouldContainEvenlySpacedPoints() local
69 PointF end = new PointF(10 + numSamples * stepX, 20 + numSamples * stepY); in testSwipe_shouldContainEvenlySpacedPoints()
83 PointF interpPoint = new PointF(start.x + stepX * i, start.y + stepY * i); in testSwipe_shouldContainEvenlySpacedPoints()