Home
last modified time | relevance | path

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

/frameworks/native/libs/renderengine/skia/filters/
DBlurFilter.cpp93 const float stepY = 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.cpp139 const float stepY = radiusByPasses / (float)mCompositionFbo.getBufferHeight(); 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.cpp139 const float stepY = radiusByPasses / (float)mCompositionFbo.getBufferHeight(); 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.java123 float stepY = (endY - startY) / STEP_COUNT; in createInterpolatedEventList() local
129 long deltaY = Math.round(j * stepY); in createInterpolatedEventList()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
DGestureManifoldTest.java137 float stepY = (float) deltaY / numSteps; in fillPath() local
143 (start.y + (stepY * (float) step)))); in fillPath()
/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/
DPainting.kt196 val stepY = (s.y - y) / N in plot() constant
200 y += stepY in plot()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DGestureDescriptionTest.java67 float stepY = 3; 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()