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

  /frameworks/base/libs/hwui/
BakedOpState.cpp 56 clipState = snapshot.serializeIntersectedClip(allocator, recordedOp.localClip,
58 LOG_ALWAYS_FATAL_IF(!clipState, "must clip!");
60 const Rect& clipRect = clipState->rect;
64 // Note: we could rewind the clipState object in situations where the clipRect is empty,
66 clipState = nullptr;
91 clipState = snapshot.serializeIntersectedClip(allocator, localClip, *(snapshot.transform));
92 clippedBounds = clipState->rect;
99 , clipState(snapshot.mutateClipArea().serializeClip(allocator))
100 , clippedBounds(clipState->rect)
106 , clipState(clipRect
    [all...]
BakedOpState.h 78 const Rect& clipRect() const { return clipState->rect; }
82 CC_UNLIKELY(clipState->mode != ClipMode::Rectangle);
86 const ClipBase* getClipIfNeeded() const { return requiresClip() ? clipState : nullptr; }
89 const ClipBase* clipState = nullptr;
BakedOpDispatcher.cpp 238 auto clipState = textOpState.computedState.clipState;
239 if (clipState->mode != ClipMode::Rectangle || !clipState->rect.contains(shadowBounds)) {
241 shadowBounds.doIntersect(clipState->rect);
244 clipState = nullptr;
247 renderer.renderGlop(&shadowBounds, clipState, glop);
539 .setModelViewMapUnitToRect(state.computedState.clipState->rect)
    [all...]
FrameBuilder.cpp 587 return !state.computedState.clipState ||
588 state.computedState.clipState->mode == ClipMode::Rectangle;
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
FrameBuilderTests.cpp     [all...]

Completed in 112 milliseconds