HomeSort by relevance Sort by last modified time
    Searched refs:nextNormal (Results 1 - 2 of 2) sorted by null

  /external/skia/experimental/AndroidPathRenderer/
AndroidPathRenderer.cpp 130 SkVector nextNormal;
131 nextNormal.set(next->position[1] - current->position[1],
133 nextNormal.normalize();
135 SkVector totalOffset = totalOffsetFromNormals(lastNormal, nextNormal);
148 lastNormal = nextNormal;
165 SkVector nextNormal;
166 nextNormal.set(next->position[1] - current->position[1],
168 nextNormal.normalize();
172 totalOffset = nextNormal;
174 totalOffset = totalOffsetFromNormals(lastNormal, nextNormal);
    [all...]
  /frameworks/base/libs/hwui/
PathTessellator.cpp 218 Vector2 nextNormal = {next->y - current->y, current->x - next->x};
219 nextNormal.normalize();
221 Vector2 totalOffset = totalOffsetFromNormals(lastNormal, nextNormal);
233 lastNormal = nextNormal;
316 Vector2 nextNormal = {next->y - current->y, current->x - next->x};
317 nextNormal.normalize();
319 Vector2 strokeOffset = totalOffsetFromNormals(lastNormal, nextNormal);
327 lastNormal = nextNormal;
358 Vector2 nextNormal = {next->y - current->y, current->x - next->x};
359 nextNormal.normalize()
    [all...]

Completed in 114 milliseconds