Home | History | Annotate | Download | only in glrenderer

Lines Matching refs:Layout

21 import android.text.Layout;
31 private final Layout mLayout;
33 private MultiLineTexture(Layout layout) {
34 super(layout.getWidth(), layout.getHeight());
35 mLayout = layout;
40 Layout.Alignment alignment) {
42 Layout layout = new StaticLayout(text, 0, text.length(), paint,
45 return new MultiLineTexture(layout);