HomeSort by relevance Sort by last modified time
    Searched refs:tightBounds (Results 1 - 4 of 4) sorted by null

  /external/skia/tests/
PathOpsTightBoundsTest.cpp 30 SkRect tightBounds;
31 REPORTER_ASSERT(data->fReporter, TightBounds(path, &tightBounds));
32 REPORTER_ASSERT(data->fReporter, classicBounds == tightBounds);
80 SkRect tightBounds;
81 REPORTER_ASSERT(data->fReporter, TightBounds(path, &tightBounds));
82 REPORTER_ASSERT(data->fReporter, classicBounds.contains(tightBounds));
105 tightBounds.roundOut(&tightOut);
ClipStackTest.cpp 967 SkIRect* tightBounds = r.nextBool() ? &tBounds : nullptr;
973 tightBounds);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
BitmapFont.java 774 * @param tightBounds If true, the first {@link GlyphRun#xAdvances} entry is offset to prevent the first glyph from being
777 public void getGlyphs (GlyphRun run, CharSequence str, int start, int end, boolean tightBounds) {
800 xAdvances.add((!tightBounds || glyph.fixedWidth) ? 0 : -glyph.xoffset * scaleX - padLeft);
809 float lastGlyphWidth = (!tightBounds || lastGlyph.fixedWidth) ? lastGlyph.xadvance
    [all...]
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeTypeFontGenerator.java 678 public void getGlyphs (GlyphRun run, CharSequence str, int start, int end, boolean tightBounds) {
680 super.getGlyphs(run, str, start, end, tightBounds);

Completed in 124 milliseconds