Home
last modified time | relevance | path

Searched refs:subset (Results 176 - 200 of 236) sorted by relevance

12345678910

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-os2-table.hh169 bool subset (hb_subset_context_t *c) const in subset() function
H A Dhb-ot-name-table.hh241 bool subset (hb_subset_context_t *c) const in subset() function
H A Dhb-subset.cc30 #include "hb-subset.hh"
59 * SECTION:hb-subset
60 * @title: hb-subset
62 * @include: hb-subset.h
65 * that is no longer needed. A subset input describes the desired subset. The input is
76 * retain glyph ids option and configure the subset to pass through the layout tables untouched.
116 // TODO(garretrieger): refactor so we can share the resize/retry logic with the subset in _repack()
134 bool needed = table->subset (c); in _try_subset()
167 "OT::%c%c%c%c::subset sanitiz in _subset()
[all...]
H A Dhb-ot-cff2-table.hh31 #include "hb-subset-cff2.hh"
517 bool subset (hb_subset_context_t *c) const { return hb_subset_cff2 (c); } in subset() function
H A Dhb-subset-cff2.cc34 #include "hb-subset-cff2.hh"
35 #include "hb-subset-plan.hh"
36 #include "hb-subset-cff-common.hh"
281 if (!subr_subsetter.subset ()) in create()
/third_party/skia/src/effects/imagefilters/
H A DSkDisplacementMapImageFilter.cpp304 displ->subset(), in onFilterImage()
307 color->subset(), in onFilterImage()
H A DSkMorphologyImageFilter.cpp458 srcRect.offset(input->subset().x(), input->subset().y()); in apply_morphology()
H A DSkBlurImageFilter.cpp980 dstBounds.offset(input->subset().topLeft()); in gpuFilter()
981 inputBounds.offset(input->subset().topLeft()); in gpuFilter()
/third_party/skia/src/core/
H A DSkBitmap.cpp426 bool SkBitmap::extractSubset(SkBitmap* result, const SkIRect& subset) const { in extractSubset()
435 if (!r.intersect(srcRect, subset)) { in extractSubset()
H A DSkRecords.h174 Optional<SkRect> subset);
H A DSkDevice.h316 * Draw the special image's subset to this device, subject to the given matrix transform instead
341 // Snap the 'subset' contents from this device, possibly as a read-only view. If 'forceCopy'
345 virtual sk_sp<SkSpecialImage> snapSpecial(const SkIRect& subset, bool forceCopy = false);
/third_party/skia/src/gpu/
H A DSkGr.cpp181 SkIRect subset = SkIRect::MakePtSize(origin, bitmap.dimensions()); in GrMakeCachedBitmapProxyView() local
182 GrMakeKeyFromImageID(&key, bitmap.pixelRef()->getGenerationID(), subset); in GrMakeCachedBitmapProxyView()
/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp1462 // First, figure out the src->dst transform and subset the image if needed. in internalDrawImageRect()
1474 imageSubset = imageSubset.subset(bounds); in internalDrawImageRect()
1642 SkIRect subset = imageSubset.image()->bounds(); in internalDrawImageRect() local
1643 scaled.postScale(SkIntToScalar(subset.width()), in internalDrawImageRect()
1644 SkIntToScalar(subset.height())); in internalDrawImageRect()
1651 SkPath shape = SkPath::Rect(SkRect::Make(subset)).makeTransform(matrix); in internalDrawImageRect()
/third_party/skia/src/gpu/v1/
H A DDevice_v1.h142 sk_sp<SkSpecialImage> snapSpecial(const SkIRect& subset, bool forceCopy = false) override;
H A DDevice.cpp658 // GrMakeCachedBitmapProxyView creates a tight copy of 'bitmap' so we don't have to subset in makeSpecial()
694 sk_sp<SkSpecialImage> Device::snapSpecial(const SkIRect& subset, bool forceCopy) { in snapSpecial() argument
709 SkIRect finalSubset = subset; in snapSpecial()
717 subset, in snapSpecial()
723 // Since this copied only the requested subset, the special image wrapping the proxy no in snapSpecial()
724 // longer needs the original subset. in snapSpecial()
H A DDevice_drawTexture.cpp40 // Helper functions for dropping src rect subset with GrSamplerState::Filter::kLinear.
501 const SkRect* subset = restrictToSubset ? &src : nullptr; in draw_image() local
508 subset, in draw_image()
625 // We must subset as a bitmap and then turn into an SkImage if we want caching to work. in draw_tiled_bitmap()
715 SkRect src = SkRect::Make(special->subset()); in drawSpecial()
H A DClipStack.cpp1638 auto subset = SkRect::Make(bounds); in GetSWMaskFP() local
1639 subset.offset(-maskBounds.fLeft, -maskBounds.fTop); in GetSWMaskFP()
1642 auto domain = subset.makeInset(0.5, 0.5); in GetSWMaskFP()
1644 samplerState, subset, domain, *context->priv().caps()); in GetSWMaskFP()
H A DSurfaceDrawContext.cpp682 const SkRect* subset = constraint == SkCanvas::kStrict_SrcRectConstraint ? in drawTexture() local
687 mm, color, blendMode, aa, &quad, subset); in drawTexture()
700 const SkRect* subset) { in drawTexturedQuad()
722 // Use the provided subset, although hypothetically we could detect that the cropped local in drawTexturedQuad()
723 // quad is sufficiently inside the subset and the constraint could be dropped. in drawTexturedQuad()
727 blendMode, aaType, quad, subset)); in drawTexturedQuad()
690 drawTexturedQuad(const GrClip* clip, GrSurfaceProxyView proxyView, SkAlphaType srcAlphaType, sk_sp<GrColorSpaceXform> textureXform, GrSamplerState::Filter filter, GrSamplerState::MipmapMode mm, const SkPMColor4f& color, SkBlendMode blendMode, GrAA aa, DrawQuad* quad, const SkRect* subset) drawTexturedQuad() argument
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/tools/subsetter/
H A DRenumberingSubsetTest.java74 Font.Builder dstFontBuilder = subsetter.subset(); in setUp()
/third_party/skia/include/core/
H A DSkBitmap.h900 to the same pixels; dst bounds() are set to the intersection of subset
903 subset may be larger than bounds(). Any area outside of bounds() is ignored.
910 - subset does not intersect bounds()
912 @param dst SkBitmap set to subset
913 @param subset rectangle of pixels to reference
914 @return true if dst is replaced by subset
918 bool extractSubset(SkBitmap* dst, const SkIRect& subset) const;
/third_party/skia/dm/
H A DDMSrcSink.cpp257 // Each subset will be 390x390. in draw()
258 // Each scaled subset be 48x48. in draw()
269 // Calculate the subset dimensions in draw()
275 // Increase the size of the last subset in each row or column, when the in draw()
280 // Increase the size of the subset in order to have a border on each side in draw()
702 SkIRect subset; in draw() local
704 subset = SkIRect::MakeXYWH(x, 0, std::min(tileSize, width - x), height); in draw()
705 options.fSubset = &subset; in draw()
723 return Result::Skip("Cannot codec subset: divisor %d is too big " in draw()
727 // subset dimension in draw()
731 SkIRect subset; draw() local
[all...]
/third_party/cups-filters/filter/
H A Dtexttopdf.c182 if ( (!emb->subset)||(bits_used(emb->subset,emb->font->sfnt->numGlyphs)) ) { in WriteEpilogue()
/third_party/skia/experimental/graphite/src/
H A DDevice.cpp387 sk_sp<SkSpecialImage> Device::snapSpecial(const SkIRect& subset, bool forceCopy) { in snapSpecial() argument
/third_party/glslang/glslang/Include/
H A Dintermediate.h1357 void setFlattenSubset(int subset) { flattenSubset = subset; } in setFlattenSubset() argument
/third_party/skia/src/image/
H A DSkImage_Gpu.cpp852 const SkRect* subset, in onAsFragmentProcessor()
864 subset, in onAsFragmentProcessor()
847 onAsFragmentProcessor( GrRecordingContext* rContext, SkSamplingOptions sampling, const SkTileMode tileModes[2], const SkMatrix& m, const SkRect* subset, const SkRect* domain) const onAsFragmentProcessor() argument

Completed in 39 milliseconds

12345678910