Searched defs:pointSize (Results 1 - 25 of 37) 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:__anon14321
/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.cpp33 const int pointSize = 24; variable
34 textHeight = SkIntToScalar(pointSize);
H A Dlcdtext.cpp23 const int pointSize = 36; local
24 textHeight = SkIntToScalar(pointSize);
H A Dshadertext.cpp105 const int pointSize = 36; variable
107 const int w = pointSize * textLen;
108 const int h = pointSize;
149 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/opencv3/samples/cpp/
H A Dintelperc_capture.cpp168 static const int pointSize = 4; local
169 for (int row = y; row < min(y + pointSize, image.rows); row++)
172 for (int col = 0; col < min(pointSize, image.cols - x); col++, ptrDst+=3)
201 static const int pointSize = 4; local
202 for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++)
205 for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
258 static const int pointSize = 4; local
259 for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++)
262 for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
/external/skia/samplecode/
H A DSampleShaderText.cpp115 static int pointSize = 36; local
117 int w = pointSize * textLen;
118 int h = pointSize;
157 paint.setTextSize(SkIntToScalar(pointSize));
/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::__anon13577
/external/opencv3/modules/highgui/src/
H A Dwindow.cpp384 cv::QtFont cv::fontQt(const String& nameFont, int pointSize, Scalar color, int weight, int style, int /*spacing*/) argument
386 CvFont f = cvFontQt(nameFont.c_str(), pointSize,color,weight, style);

Completed in 1530 milliseconds

12