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 53 clipState = snapshot.serializeIntersectedClip(allocator,
55 LOG_ALWAYS_FATAL_IF(!clipState, "must clip!");
57 const Rect& clipRect = clipState->rect;
61 // Note: we could rewind the clipState object in situations where the clipRect is empty,
63 clipState = nullptr;
88 clipState = snapshot.serializeIntersectedClip(allocator, localClip, *(snapshot.transform));
89 clippedBounds = clipState->rect;
96 , clipState(snapshot.mutateClipArea().serializeClip(allocator))
97 , clippedBounds(clipState->rect)
103 , clipState(clipRect
    [all...]
BakedOpState.h 78 return clipState->rect;
83 || CC_UNLIKELY(clipState->mode != ClipMode::Rectangle);
88 return requiresClip() ? clipState : nullptr;
92 const ClipBase* clipState = nullptr;
BakedOpDispatcher.cpp 247 auto clipState = textOpState.computedState.clipState;
248 if (clipState->mode != ClipMode::Rectangle
249 || !clipState->rect.contains(shadowBounds)) {
251 shadowBounds.doIntersect(clipState->rect);
254 clipState = nullptr;
257 renderer.renderGlop(&shadowBounds, clipState, glop);
554 .setModelViewMapUnitToRect(state.computedState.clipState->rect)
    [all...]
FrameBuilder.cpp 594 return !state.computedState.clipState
595 || state.computedState.clipState->mode == ClipMode::Rectangle;
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
FrameBuilderTests.cpp     [all...]

Completed in 104 milliseconds