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 55 clipState = snapshot.serializeIntersectedClip(allocator,
57 LOG_ALWAYS_FATAL_IF(!clipState, "must clip!");
59 const Rect& clipRect = clipState->rect;
63 // Note: we could rewind the clipState object in situations where the clipRect is empty,
65 clipState = nullptr;
90 clipState = snapshot.serializeIntersectedClip(allocator, localClip, *(snapshot.transform));
91 clippedBounds = clipState->rect;
98 , clipState(snapshot.mutateClipArea().serializeClip(allocator))
99 , clippedBounds(clipState->rect)
105 , 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 241 auto clipState = textOpState.computedState.clipState;
242 if (clipState->mode != ClipMode::Rectangle
243 || !clipState->rect.contains(shadowBounds)) {
245 shadowBounds.doIntersect(clipState->rect);
248 clipState = nullptr;
251 renderer.renderGlop(&shadowBounds, clipState, glop);
540 .setModelViewMapUnitToRect(state.computedState.clipState->rect)
    [all...]
FrameBuilder.cpp 601 return !state.computedState.clipState
602 || state.computedState.clipState->mode == ClipMode::Rectangle;
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
FrameBuilderTests.cpp     [all...]

Completed in 2132 milliseconds