HomeSort by relevance Sort by last modified time
    Searched refs:GrFixedClip (Results 1 - 25 of 27) sorted by null

1 2

  /external/skia/src/gpu/
GrFixedClip.cpp 8 #include "GrFixedClip.h"
13 bool GrFixedClip::quickContains(const SkRect& rect) const {
20 void GrFixedClip::getConservativeBounds(int w, int h, SkIRect* devResult, bool* iior) const {
32 bool GrFixedClip::isRRect(const SkRect& rtBounds, SkRRect* rr, GrAA* aa) const {
48 bool GrFixedClip::apply(GrContext*, GrRenderTargetContext* rtc, bool, bool, GrAppliedClip* out,
70 const GrFixedClip& GrFixedClip::Disabled() {
71 static const GrFixedClip disabled = GrFixedClip();
GrGpuCommandBuffer.h 16 class GrFixedClip;
84 void clear(GrRenderTarget*, const GrFixedClip&, GrColor);
86 void clearStencilClip(GrRenderTarget*, const GrFixedClip&, bool insideStencilMask);
110 virtual void onClear(GrRenderTarget*, const GrFixedClip&, GrColor) = 0;
112 virtual void onClearStencilClip(GrRenderTarget*, const GrFixedClip&,
GrFixedClip.h 16 * GrFixedClip is a clip that gets implemented by fixed-function hardware.
18 class GrFixedClip final : public GrClip {
20 GrFixedClip() = default;
21 explicit GrFixedClip(const SkIRect& scissorRect) : fScissorState(scissorRect) {}
48 static const GrFixedClip& Disabled();
GrRenderTargetContextPriv.h 15 class GrFixedClip;
44 void clear(const GrFixedClip&, const GrColor, bool canIgnoreClip);
46 void clearStencilClip(const GrFixedClip&, bool insideStencilMask);
GrGpuCommandBuffer.cpp 12 #include "GrFixedClip.h"
24 void GrGpuCommandBuffer::clear(GrRenderTarget* rt, const GrFixedClip& clip, GrColor color) {
34 void GrGpuCommandBuffer::clearStencilClip(GrRenderTarget* rt, const GrFixedClip& clip,
GrRenderTargetContext.h 28 class GrFixedClip;
390 void internalClear(const GrFixedClip&, const GrColor, bool canIgnoreClip);
GrPathRenderer.h 21 class GrFixedClip;
GrReducedClip.cpp 17 #include "GrFixedClip.h"
535 const GrFixedClip& clip,
596 GrFixedClip clip(SkIRect::MakeWH(fIBounds.width(), fIBounds.height()));
670 const GrFixedClip& fixedClip() const { return fFixedClip; }
696 GrFixedClip fFixedClip;
    [all...]
GrBlurUtils.cpp 13 #include "GrFixedClip.h"
130 GrFixedClip clip(clipRect);
GrRenderTargetOpList.cpp 196 std::unique_ptr<GrClearOp> op(GrClearOp::Make(GrFixedClip::Disabled(), color, fTarget.get()));
GrRenderTargetContext.cpp 16 #include "GrFixedClip.h"
242 this->internalClear(rect ? GrFixedClip(*rect) : GrFixedClip::Disabled(), color, canIgnoreRect);
295 void GrRenderTargetContextPriv::clear(const GrFixedClip& clip,
308 void GrRenderTargetContext::internalClear(const GrFixedClip& clip,
600 void GrRenderTargetContextPriv::clearStencilClip(const GrFixedClip& clip, bool insideStencilMask) {
    [all...]
  /external/skia/src/gpu/mock/
GrMockGpuCommandBuffer.h 31 void onClear(GrRenderTarget*, const GrFixedClip&, GrColor) override {}
32 void onClearStencilClip(GrRenderTarget*, const GrFixedClip&, bool insideStencilMask) override {}
  /external/skia/src/gpu/ops/
GrClearOp.cpp 14 GrClearOp::GrClearOp(const GrFixedClip& clip, GrColor color, GrSurfaceProxy* proxy)
23 fClip = GrFixedClip(SkIRect::MakeEmpty());
GrClearStencilClipOp.h 11 #include "GrFixedClip.h"
21 static std::unique_ptr<GrOp> Make(const GrFixedClip& clip, bool insideStencilMask,
42 GrClearStencilClipOp(const GrFixedClip& clip, bool insideStencilMask,
64 const GrFixedClip fClip;
GrClearOp.h 11 #include "GrFixedClip.h"
20 static std::unique_ptr<GrClearOp> Make(const GrFixedClip& clip, GrColor color,
57 GrClearOp(const GrFixedClip& clip, GrColor color, GrSurfaceProxy* proxy);
61 , fClip(GrFixedClip(rect))
100 GrFixedClip fClip;
  /external/skia/src/gpu/gl/
GrGLGpuCommandBuffer.h 66 void onClear(GrRenderTarget* rt, const GrFixedClip& clip, GrColor color) override {
75 void onClearStencilClip(GrRenderTarget* rt, const GrFixedClip& clip,
GrGLGpu.h 132 void clear(const GrFixedClip&, GrColor, GrRenderTarget*);
137 void clearStencilClip(const GrFixedClip&, bool insideStencilMask, GrRenderTarget*);
300 void clearStencilClipAsDraw(const GrFixedClip&, bool insideStencilMask, GrRenderTarget*);
  /external/skia/src/gpu/vk/
GrVkGpuCommandBuffer.h 93 void onClear(GrRenderTarget*, const GrFixedClip&, GrColor color) override;
95 void onClearStencilClip(GrRenderTarget*, const GrFixedClip&, bool insideStencilMask) override;
GrVkGpuCommandBuffer.cpp 10 #include "GrFixedClip.h"
220 void GrVkGpuCommandBuffer::onClearStencilClip(GrRenderTarget* rt, const GrFixedClip& clip,
287 void GrVkGpuCommandBuffer::onClear(GrRenderTarget* rt, const GrFixedClip& clip, GrColor color) {
  /external/skia/gm/
texdata.cpp 17 #include "GrFixedClip.h"
109 GrFixedClip clip(SkIRect::MakeWH(2*S, 2*S));
windowrectangles.cpp 15 # include "GrFixedClip.h"
262 rtc->priv().clearStencilClip(GrFixedClip::Disabled(), false);
  /external/skia/src/effects/
SkAlphaThresholdFilter.cpp 20 #include "GrFixedClip.h"
117 GrFixedClip clip(SkIRect::MakeWH(bounds.width(), bounds.height()));
SkMorphologyImageFilter.cpp 21 #include "GrFixedClip.h"
484 const GrFixedClip clip(SkIRect::MakeWH(srcTexture->width(), srcTexture->height()));
  /external/skia/src/core/
SkGpuBlurUtils.cpp 15 #include "GrFixedClip.h"
222 GrFixedClip clip(localDstBounds);
SkImageFilter.cpp 24 #include "GrFixedClip.h"
313 GrFixedClip clip(dstIRect);

Completed in 505 milliseconds

1 2