Searched defs:dstTexture (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/gpu/
H A DGrXferProcessor.cpp18 GrXferProcessor::GrXferProcessor(const DstTexture* dstTexture, argument
24 if (dstTexture && dstTexture->texture()) {
26 fDstTexture.reset(dstTexture->texture());
27 fDstTextureOffset = dstTexture->offset();
57 if (const GrTexture* dstTexture = this->getDstTexture()) {
59 if (kTopLeft_GrSurfaceOrigin == dstTexture->origin()) {
207 const DstTexture* dstTexture,
212 SkASSERT(dstTexture && dstTexture
205 createXferProcessor(const FragmentProcessorAnalysis& analysis, bool hasMixedSamples, const DstTexture* dstTexture, const GrCaps& caps) const argument
[all...]
H A DGrRenderTargetOpList.h79 GrAppliedClip&& clip, const DstTexture& dstTexture) {
81 &dstTexture);
122 const DstTexture* dstTexture)
124 if (dstTexture) {
125 fDstTexture = *dstTexture;
78 addOp(std::unique_ptr<GrOp> op, GrRenderTargetContext* renderTargetContext, GrAppliedClip&& clip, const DstTexture& dstTexture) argument
121 RecordedOp(std::unique_ptr<GrOp> op, GrRenderTarget* rt, const GrAppliedClip* appliedClip, const DstTexture* dstTexture) argument
H A DGrRenderTargetOpList.cpp275 const DstTexture* dstTexture) {
310 if (this->combineIfPossible(candidate, op.get(), clip, dstTexture)) {
337 fRecordedOps.emplace_back(std::move(op), renderTarget, clip, dstTexture); local
272 recordOp(std::unique_ptr<GrOp> op, GrRenderTargetContext* renderTargetContext, GrAppliedClip* clip, const DstTexture* dstTexture) argument
H A DGrRenderTargetContext.cpp1690 GrXferProcessor::DstTexture dstTexture; local
1692 this->setupDstTexture(rt, clip, op->bounds(), &dstTexture);
1693 if (!dstTexture.texture()) {
1699 return this->getOpList()->addOp(std::move(op), this, std::move(appliedClip), dstTexture);
1760 GrXferProcessor::DstTexture* dstTexture) {
1765 dstTexture->setTexture(sk_ref_sp(rtTex));
1766 dstTexture->setOffset(0, 0);
1807 dstTexture->setTexture(std::move(copy));
1808 dstTexture->setOffset(copyRect.fLeft, copyRect.fTop);
1758 setupDstTexture(GrRenderTarget* rt, const GrClip& clip, const SkRect& opBounds, GrXferProcessor::DstTexture* dstTexture) argument
/external/skia/src/gpu/effects/
H A DGrCustomXfermode.cpp81 CustomXP(const DstTexture* dstTexture, bool hasMixedSamples, SkBlendMode mode) argument
82 : INHERITED(dstTexture, true, hasMixedSamples),
348 const DstTexture* dstTexture) const {
351 SkASSERT(!dstTexture || !dstTexture->texture());
354 return new CustomXP(dstTexture, hasMixedSamples, fMode);
/external/skia/tests/
H A DGrPorterDuffTest.cpp1032 GrXferProcessor::DstTexture* dstTexture = local
1035 xpf->createXferProcessor(analysis, false, dstTexture, caps));

Completed in 737 milliseconds