OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:stepY
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GradientGeneratedImage.cpp
51
float
stepY
= srcRect.height() + repeatSpacing.height();
78
float dstY = (srcRect.y() + j *
stepY
) * scale.height() + phase.y();
95
visibleSrcRect.setY((tileDstRect.y() - phase.y()) / scale.height() - j *
stepY
);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FETurbulence.cpp
378
// Split the job into "
stepY
"-sized jobs but there a few jobs that need to be slightly larger since
379
//
stepY
* jobs < total size. These extras are handled by the remainder "jobsWithExtra".
380
const int
stepY
= absolutePaintRect().height() / i;
390
startY += i < jobsWithExtra ?
stepY
+ 1 :
stepY
;
/frameworks/base/libs/hwui/
Patch.cpp
129
float
stepY
= yDivs[i];
130
const float segment =
stepY
- previousStepY;
139
float v2 = fmax(0.0f,
stepY
- vOffset) / bitmapHeight;
142
if (
stepY
> 0.0f) {
148
v1 =
stepY
/ bitmapHeight;
150
previousStepY =
stepY
;
/packages/apps/Camera2/src/com/android/camera/crop/
CropDrawingUtils.java
36
float
stepY
= bounds.height() / 3.0f;
38
float y = bounds.top +
stepY
;
45
y +=
stepY
;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java
36
float
stepY
= bounds.height() / 3.0f;
38
float y = bounds.top +
stepY
;
45
y +=
stepY
;
Completed in 456 milliseconds