Home
last modified time | relevance | path

Searched refs:pointSize (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
DFont.java161 … static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) { in createFromFile() argument
164 int fontId = rs.nFontCreateFromFile(path, pointSize, dpi); in createFromFile()
177 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) { in createFromFile() argument
178 return createFromFile(rs, res, path.getAbsolutePath(), pointSize); in createFromFile()
184 … static public Font createFromAsset(RenderScript rs, Resources res, String path, float pointSize) { in createFromAsset() argument
189 int fontId = rs.nFontCreateFromAsset(mgr, path, pointSize, dpi); in createFromAsset()
200 static public Font createFromResource(RenderScript rs, Resources res, int id, float pointSize) { in createFromResource() argument
216 fontId = rs.nFontCreateFromAssetStream(name, pointSize, dpi, asset); in createFromResource()
240 … Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) { in create() argument
244 return createFromFile(rs, res, fontPath, pointSize); in create()
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
DPointCloud.java209 final float pointSize = interp(MAX_POINT_SIZE, MIN_POINT_SIZE, in draw() local
221 final float s = pointSize / MAX_POINT_SIZE; in draw()
229 canvas.drawCircle(px, py, pointSize, mPaint); in draw()
/frameworks/base/libs/hwui/
DProgram.h147 float pointSize; member
182 pointSize = 0.0f; in reset()
DOpenGLRenderer.h535 void setupDrawPoint(float pointSize);
DOpenGLRenderer.cpp1141 void OpenGLRenderer::setupDrawPoint(float pointSize) { in setupDrawPoint() argument
1143 mDescription.pointSize = pointSize; in setupDrawPoint()
1275 glUniform1f(slot, mDescription.pointSize); in setupDrawPointUniforms()