Searched refs:tightBounds (Results 1 – 4 of 4) sorted by relevance
/external/skia/tests/ |
D | PathOpsTightBoundsTest.cpp | 30 SkRect tightBounds; in testTightBoundsLines() local 31 REPORTER_ASSERT(data->fReporter, TightBounds(path, &tightBounds)); in testTightBoundsLines() 32 REPORTER_ASSERT(data->fReporter, classicBounds == tightBounds); in testTightBoundsLines() 80 SkRect tightBounds; in testTightBoundsQuads() local 81 REPORTER_ASSERT(data->fReporter, TightBounds(path, &tightBounds)); in testTightBoundsQuads() 82 REPORTER_ASSERT(data->fReporter, classicBounds.contains(tightBounds)); in testTightBoundsQuads() 105 tightBounds.roundOut(&tightOut); in testTightBoundsQuads()
|
D | ClipStackTest.cpp | 967 SkIRect* tightBounds = r.nextBool() ? &tBounds : nullptr; in test_reduced_clip_stack() local 973 tightBounds); in test_reduced_clip_stack() 988 if (tightBounds) { in test_reduced_clip_stack() 989 reducedStack.clipDevRect(*tightBounds, SkRegion::kIntersect_Op); in test_reduced_clip_stack() 1030 SkIRect tightBounds; in test_reduced_clip_stack_genid() local 1037 &tightBounds); in test_reduced_clip_stack_genid() 1125 SkIRect tightBounds; in test_reduced_clip_stack_genid() local 1132 … testCases[i].tighterBounds.isEmpty() ? nullptr : &tightBounds); in test_reduced_clip_stack_genid() 1141 REPORTER_ASSERT(reporter, tightBounds == testCases[i].tighterBounds); in test_reduced_clip_stack_genid() 1142 SkASSERT(tightBounds == testCases[i].tighterBounds); in test_reduced_clip_stack_genid() [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
D | BitmapFont.java | 777 public void getGlyphs (GlyphRun run, CharSequence str, int start, int end, boolean tightBounds) { in getGlyphs() argument 800 xAdvances.add((!tightBounds || glyph.fixedWidth) ? 0 : -glyph.xoffset * scaleX - padLeft); in getGlyphs() 809 float lastGlyphWidth = (!tightBounds || lastGlyph.fixedWidth) ? lastGlyph.xadvance in getGlyphs()
|
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
D | FreeTypeFontGenerator.java | 678 public void getGlyphs (GlyphRun run, CharSequence str, int start, int end, boolean tightBounds) { in getGlyphs() argument 680 super.getGlyphs(run, str, start, end, tightBounds); in getGlyphs()
|