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

  /external/skia/src/animator/
SkDrawClip.h 21 DECLARE_DRAW_MEMBER_INFO(Clip);
SkDisplayType.cpp 109 CASE_DRAW_NEW(Clip);
264 CASE_GET_DRAW_INFO(Clip);
431 DRAW_NAME("clip", SkType_Clip),
  /external/skia/tools/lua/
dump_clipstack_at_restore.lua 14 -- io.write("Clip Stack at restore #", restoreCount, ":\n")
15 io.write("Reduced Clip Stack at restore #", restoreCount, ":\n")
  /external/skia/gm/
convexpolyclip.cpp 149 static const char kTxt[] = "Clip Me!";
160 for (SkTLList<Clip>::Iter iter(fClips, SkTLList<Clip>::Iter::kHead_IterStart);
163 const Clip* clip = iter.get(); variable
168 clip->getBounds(&bounds);
176 clip->setOnCanvas(canvas, SkRegion::kIntersect_Op, SkToBool(aa));
191 clip->getBounds(&bounds);
200 clip->asClosedPath(&closedClipPath);
202 clip->setOnCanvas(canvas, SkRegion::kIntersect_Op, SkToBool(aa))
    [all...]
complexclip2.cpp 18 enum Clip {
24 ComplexClip2GM(Clip clip, bool antiAlias)
25 : fClip(clip)
108 static const char* ClipStr(Clip clip) {
109 switch (clip) {
117 SkDEBUGFAIL("Unknown clip type.");
195 Clip fClip;
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 6 template<class Clip=rasterizer_sl_clip_int> class rasterizer_scanline_aa
  /external/skia/include/gpu/
GrClip.h 17 * GrClip encapsulates the information required to construct the clip
19 * If the clip is a clipstack than the origin is used to translate the stack with
20 * respect to device coordinates. This allows us to use a clip stack that is
22 * of the original canvas. For other clip types the origin will always be (0,0).
130 // We support this for all cliptypes to simplify the logic a bit in clip mask manager.
131 // non clipstack clip types MUST have a (0,0) origin
182 union Clip {
  /external/libyuv/files/source/
row_common.cc 441 static __inline uint32 Clip(int32 val) {
453 uint32 b = Clip(static_cast<int32>((u * UB + v * VB) - (BB) + y1) >> 6);
454 uint32 g = Clip(static_cast<int32>((u * UG + v * VG) - (BG) + y1) >> 6);
455 uint32 r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
465 *b = Clip(static_cast<int32>((u * UB + v * VB) - (BB) + y1) >> 6);
466 *g = Clip(static_cast<int32>((u * UG + v * VG) - (BG) + y1) >> 6);
467 *r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
    [all...]

Completed in 735 milliseconds