Searched defs:pointSize (Results 1 - 25 of 30) sorted by relevance

12

/external/deqp/framework/referencerenderer/
H A DrrPrimitivePacket.cpp38 void GeometryEmitter::EmitVertex (const tcu::Vec4& position, float pointSize, const GenericVec4* varyings, int primitiveID) argument
51 packet->pointSize = pointSize;
H A DrrVertexPacket.hpp61 float pointSize; //!< Point size, required when rendering points. member in struct:rr::VertexPacket
/external/icu/icu4c/source/samples/layout/
H A DGDIFontMap.cpp18 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
19 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
29 const LEFontInstance *GDIFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status) argument
31 LEFontInstance *result = new GDIFontInstance(fSurface, fontName, pointSize, status);
H A DGnomeFontMap.cpp20 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
21 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
31 const LEFontInstance *GnomeFontMap::openFont(const char *fontName, le_int16 pointSize, LEErrorCode &status) argument
33 LEFontInstance *result = new GnomeFontInstance(fEngine, fontName, pointSize, status);
H A Dgdiglue.cpp56 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status) argument
58 return (fm_fontMap *) new GDIFontMap((GDISurface *) surface, fileName, pointSize, (GDIGUISupport *) guiSupport, *status);
H A Dgnomeglue.cpp52 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status) argument
54 return (fm_fontMap *) new GnomeFontMap(engine, fileName, pointSize, (GnomeGUISupport *) guiSupport, *status);
H A DFontMap.cpp22 FontMap::FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
23 : fPointSize(pointSize), fFontCount(0), fAscent(0), fDescent(0), fLeading(0), fGUISupport(guiSupport)
H A DGnomeFontInstance.cpp49 GnomeFontInstance::GnomeFontInstance(FT_Library engine, const char *fontPathName, le_int16 pointSize, LEErrorCode &status) argument
50 : FontTableCache(), fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92);
H A DGDIFontInstance.cpp104 GDIFontInstance::GDIFontInstance(GDISurface *surface, TCHAR *faceName, le_int16 pointSize, LEErrorCode &status) argument
106 fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
130 pt.x = (int) (pointSize * dpiX / 72);
131 pt.y = (int) (pointSize * dpiY / 72);
135 pt.x = pt.y = pointSize;
189 GDIFontInstance::GDIFontInstance(GDISurface *surface, const char *faceName, le_int16 pointSize, LEErrorCode &status) argument
191 fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
218 pt.x = (int) (pointSize * fDeviceScaleX);
219 pt.y = (int) (pointSize * fDeviceScaleY);
223 pt.x = pt.y = pointSize;
[all...]
/external/mesa3d/src/mesa/swrast/
H A Dswrast.h103 GLfloat pointSize; member in struct:__anon12831
/external/icu/icu4c/source/test/letest/
H A Dcfonts.cpp17 float pointSize,
20 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
23 le_font *le_simpleFontOpen(float pointSize, argument
26 return (le_font *) new SimpleFontInstance(pointSize, *status);
16 le_portableFontOpen(const char *fileName, float pointSize, LEErrorCode *status) argument
H A DSimpleFontInstance.cpp26 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status) argument
27 : fPointSize(pointSize), fAscent(0), fDescent(0)
H A DPortableFontInstance.cpp79 PortableFontInstance::PortableFontInstance(const char *fileName, float pointSize, LEErrorCode &status) argument
80 : fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), fLeading(0),
/external/icu/icu4c/source/test/perf/leperf/
H A Dcfonts.cpp15 float pointSize,
18 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
21 le_font *le_simpleFontOpen(float pointSize, argument
24 return (le_font *) new SimpleFontInstance(pointSize, *status);
14 le_portableFontOpen(const char *fileName, float pointSize, LEErrorCode *status) argument
H A DSimpleFontInstance.cpp23 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status) argument
24 : fPointSize(pointSize), fAscent(0), fDescent(0)
H A DPortableFontInstance.cpp79 PortableFontInstance::PortableFontInstance(const char *fileName, float pointSize, LEErrorCode &status) argument
80 : fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), fLeading(0),
/external/skia/gm/
H A Dverttext2.cpp22 const int pointSize = 24; local
23 textHeight = SkIntToScalar(pointSize);
H A Dlcdtext.cpp23 const int pointSize = 36; local
24 textHeight = SkIntToScalar(pointSize);
H A Dshadertext.cpp104 const int pointSize = 36; variable
106 const int w = pointSize * textLen;
107 const int h = pointSize;
148 paint.setTextSize(SkIntToScalar(pointSize));
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_points.c60 const GLfloat pointSize = ctx->Point.Size; local
68 size[i][0] = pointSize * atten; /* clamping done in rasterization */
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.hpp93 float pointSize; member in struct:deqp::gls::RasterizationTestUtil::PointSceneSpec::ScenePoint
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DRenderContext.java111 public float pointSize = 1; field in class:RenderContext
283 pointSize = 1;
/external/skia/samplecode/
H A DSampleShaderText.cpp114 static int pointSize = 36; local
116 int w = pointSize * textLen;
117 int h = pointSize;
156 paint.setTextSize(SkIntToScalar(pointSize));
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DMesh.java171 private float pointSize = 1; field in class:Mesh
497 return pointSize;
508 * @param pointSize The size of points
510 public void setPointSize(float pointSize) { argument
511 this.pointSize = pointSize;
1279 out.write(pointSize, "pointSize", 1f);
1297 pointSize = in.readFloat("pointSize",
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_driver.h168 uint8_t pointSize; /* output index for PointSize */ member in struct:nv50_ir_prog_info::__anon12087

Completed in 455 milliseconds

12