Home
last modified time | relevance | path

Searched refs:inputProxy (Results 1 – 25 of 30) sorted by relevance

12

/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/gpu/
H A DGrTextureProducer.cpp19 sk_sp<GrTextureProxy> inputProxy, in CopyOnGpu() argument
28 if (GrPixelConfigIsSRGB(inputProxy->config())) { in CopyOnGpu()
32 SkBackingFit::kExact, dstRect.width(), dstRect.height(), inputProxy->config(), in CopyOnGpu()
33 std::move(colorSpace), 1, mipMapped, inputProxy->origin()); in CopyOnGpu()
41 SkRect localRect = SkRect::MakeWH(inputProxy->width(), inputProxy->height()); in CopyOnGpu()
47 needsDomain = resizing && !GrProxyProvider::IsFunctionallyExact(inputProxy.get()); in CopyOnGpu()
56 GrTextureDomainEffect::Make(std::move(inputProxy), SkMatrix::I(), domain, in CopyOnGpu()
60 paint.addColorTextureProcessor(std::move(inputProxy), SkMatrix::I(), samplerState); in CopyOnGpu()
H A DGrTextureProducer.h126 static sk_sp<GrTextureProxy> CopyOnGpu(GrContext*, sk_sp<GrTextureProxy> inputProxy,
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/gpu/
H A DGrTextureProducer.cpp24 sk_sp<GrTextureProxy> inputProxy, in CopyOnGpu() argument
33 SkRect localRect = SkRect::MakeWH(inputProxy->width(), inputProxy->height()); in CopyOnGpu()
40 needsDomain = resizing && !GrProxyProvider::IsFunctionallyExact(inputProxy.get()); in CopyOnGpu()
45 sk_sp<GrTextureProxy> proxy = GrCopyBaseMipMapToTextureProxy(context, inputProxy.get(), in CopyOnGpu()
54 mipMapped, inputProxy->origin()); in CopyOnGpu()
67 GrTextureDomainEffect::Make(std::move(inputProxy), colorType, SkMatrix::I(), domain, in CopyOnGpu()
71 paint.addColorTextureProcessor(std::move(inputProxy), colorType, SkMatrix::I(), in CopyOnGpu()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/gpu/
H A DGrTextureProducer.cpp24 sk_sp<GrTextureProxy> inputProxy, in CopyOnGpu() argument
33 SkRect localRect = SkRect::MakeWH(inputProxy->width(), inputProxy->height()); in CopyOnGpu()
40 needsDomain = resizing && !GrProxyProvider::IsFunctionallyExact(inputProxy.get()); in CopyOnGpu()
45 sk_sp<GrTextureProxy> proxy = GrCopyBaseMipMapToTextureProxy(context, inputProxy.get(), in CopyOnGpu()
54 mipMapped, inputProxy->origin()); in CopyOnGpu()
67 GrTextureDomainEffect::Make(std::move(inputProxy), colorType, SkMatrix::I(), domain, in CopyOnGpu()
71 paint.addColorTextureProcessor(std::move(inputProxy), colorType, SkMatrix::I(), in CopyOnGpu()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/gpu/
H A DGrTextureProducer.cpp24 sk_sp<GrTextureProxy> inputProxy, in CopyOnGpu() argument
33 SkRect localRect = SkRect::MakeWH(inputProxy->width(), inputProxy->height()); in CopyOnGpu()
40 needsDomain = resizing && !GrProxyProvider::IsFunctionallyExact(inputProxy.get()); in CopyOnGpu()
45 sk_sp<GrTextureProxy> proxy = GrCopyBaseMipMapToTextureProxy(context, inputProxy.get(), in CopyOnGpu()
54 mipMapped, inputProxy->origin()); in CopyOnGpu()
67 GrTextureDomainEffect::Make(std::move(inputProxy), colorType, SkMatrix::I(), domain, in CopyOnGpu()
71 paint.addColorTextureProcessor(std::move(inputProxy), colorType, SkMatrix::I(), in CopyOnGpu()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/gpu/
H A DGrTextureProducer.cpp24 sk_sp<GrTextureProxy> inputProxy, in CopyOnGpu() argument
33 SkRect localRect = SkRect::MakeWH(inputProxy->width(), inputProxy->height()); in CopyOnGpu()
40 needsDomain = resizing && !GrProxyProvider::IsFunctionallyExact(inputProxy.get()); in CopyOnGpu()
45 sk_sp<GrTextureProxy> proxy = GrCopyBaseMipMapToTextureProxy(context, inputProxy.get(), in CopyOnGpu()
54 mipMapped, inputProxy->origin()); in CopyOnGpu()
67 GrTextureDomainEffect::Make(std::move(inputProxy), colorType, SkMatrix::I(), domain, in CopyOnGpu()
71 paint.addColorTextureProcessor(std::move(inputProxy), colorType, SkMatrix::I(), in CopyOnGpu()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/effects/imagefilters/
H A DSkMagnifierImageFilter.cpp125 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
126 SkASSERT(inputProxy); in onFilterImage()
128 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
140 auto fp = GrMagnifierEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkAlphaThresholdFilter.cpp152 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
153 SkASSERT(inputProxy); in onFilterImage()
154 const bool isProtected = inputProxy->isProtected(); in onFilterImage()
170 auto textureFP = GrSimpleTextureEffect::Make(std::move(inputProxy), srcColorType, in onFilterImage()
H A DSkMatrixConvolutionImageFilter.cpp445 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
446 SkASSERT(inputProxy); in onFilterImage()
448 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
457 auto fp = GrMatrixConvolutionEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkLightingImageFilter.cpp480 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in filterImageGPU() local
481 SkASSERT(inputProxy); in filterImageGPU()
494 inputProxy->isProtected() ? GrProtected::kYes : GrProtected::kNo); in filterImageGPU()
517 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topLeft, in filterImageGPU()
519 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, top, in filterImageGPU()
521 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topRight, in filterImageGPU()
523 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, left, in filterImageGPU()
525 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, interior, in filterImageGPU()
527 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, right, in filterImageGPU()
529 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, bottomLeft, in filterImageGPU()
[all …]
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/effects/imagefilters/
H A DSkMagnifierImageFilter.cpp125 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
126 SkASSERT(inputProxy); in onFilterImage()
128 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
140 auto fp = GrMagnifierEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkAlphaThresholdFilter.cpp152 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
153 SkASSERT(inputProxy); in onFilterImage()
154 const bool isProtected = inputProxy->isProtected(); in onFilterImage()
170 auto textureFP = GrSimpleTextureEffect::Make(std::move(inputProxy), srcColorType, in onFilterImage()
H A DSkMatrixConvolutionImageFilter.cpp445 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
446 SkASSERT(inputProxy); in onFilterImage()
448 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
457 auto fp = GrMatrixConvolutionEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkLightingImageFilter.cpp480 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in filterImageGPU() local
481 SkASSERT(inputProxy); in filterImageGPU()
494 inputProxy->isProtected() ? GrProtected::kYes : GrProtected::kNo); in filterImageGPU()
517 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topLeft, in filterImageGPU()
519 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, top, in filterImageGPU()
521 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topRight, in filterImageGPU()
523 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, left, in filterImageGPU()
525 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, interior, in filterImageGPU()
527 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, right, in filterImageGPU()
529 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, bottomLeft, in filterImageGPU()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/effects/imagefilters/
H A DSkMagnifierImageFilter.cpp125 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
126 SkASSERT(inputProxy); in onFilterImage()
128 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
140 auto fp = GrMagnifierEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkAlphaThresholdFilter.cpp152 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
153 SkASSERT(inputProxy); in onFilterImage()
154 const bool isProtected = inputProxy->isProtected(); in onFilterImage()
170 auto textureFP = GrSimpleTextureEffect::Make(std::move(inputProxy), srcColorType, in onFilterImage()
H A DSkMatrixConvolutionImageFilter.cpp445 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
446 SkASSERT(inputProxy); in onFilterImage()
448 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
457 auto fp = GrMatrixConvolutionEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkLightingImageFilter.cpp480 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in filterImageGPU() local
481 SkASSERT(inputProxy); in filterImageGPU()
494 inputProxy->isProtected() ? GrProtected::kYes : GrProtected::kNo); in filterImageGPU()
517 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topLeft, in filterImageGPU()
519 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, top, in filterImageGPU()
521 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topRight, in filterImageGPU()
523 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, left, in filterImageGPU()
525 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, interior, in filterImageGPU()
527 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, right, in filterImageGPU()
529 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, bottomLeft, in filterImageGPU()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/effects/
H A DSkMagnifierImageFilter.cpp103 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
104 SkASSERT(inputProxy); in onFilterImage()
110 GrPixelConfig inputConfig = inputProxy->config(); in onFilterImage()
111 auto fp = GrMagnifierEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkAlphaThresholdFilter.cpp159 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
160 SkASSERT(inputProxy); in onFilterImage()
176 GrPixelConfig inputConfig = inputProxy->config(); in onFilterImage()
177 auto textureFP = GrSimpleTextureEffect::Make(std::move(inputProxy), SkMatrix::I()); in onFilterImage()
H A DSkMatrixConvolutionImageFilter.cpp316 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
317 SkASSERT(inputProxy); in onFilterImage()
323 auto fp = GrMatrixConvolutionEffect::Make(std::move(inputProxy), in onFilterImage()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/effects/imagefilters/
H A DSkMagnifierImageFilter.cpp125 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
126 SkASSERT(inputProxy); in onFilterImage()
128 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
140 auto fp = GrMagnifierEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkAlphaThresholdFilter.cpp152 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
153 SkASSERT(inputProxy); in onFilterImage()
154 const bool isProtected = inputProxy->isProtected(); in onFilterImage()
170 auto textureFP = GrSimpleTextureEffect::Make(std::move(inputProxy), srcColorType, in onFilterImage()
H A DSkMatrixConvolutionImageFilter.cpp445 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in onFilterImage() local
446 SkASSERT(inputProxy); in onFilterImage()
448 const auto isProtected = inputProxy->isProtected(); in onFilterImage()
457 auto fp = GrMatrixConvolutionEffect::Make(std::move(inputProxy), in onFilterImage()
H A DSkLightingImageFilter.cpp480 sk_sp<GrTextureProxy> inputProxy(input->asTextureProxyRef(context)); in filterImageGPU() local
481 SkASSERT(inputProxy); in filterImageGPU()
494 inputProxy->isProtected() ? GrProtected::kYes : GrProtected::kNo); in filterImageGPU()
517 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topLeft, in filterImageGPU()
519 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, top, in filterImageGPU()
521 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, topRight, in filterImageGPU()
523 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, left, in filterImageGPU()
525 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, interior, in filterImageGPU()
527 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, right, in filterImageGPU()
529 this->drawRect(renderTargetContext.get(), inputProxy, matrix, clip, bottomLeft, in filterImageGPU()
[all …]

12