HomeSort by relevance Sort by last modified time
    Searched defs:point_type (Results 1 - 5 of 5) sorted by null

  /external/pdfium/fpdfsdk/src/
fpdf_transformpage.cpp 237 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
238 if (point_type == FXPT_MOVETO)
240 else if (point_type == FXPT_BEZIERTO) {
248 } else if (point_type == FXPT_LINETO) {
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_driver.cpp 45 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
46 if (point_type == FXPT_MOVETO) {
48 } else if (point_type == FXPT_LINETO) {
54 } else if (point_type == FXPT_BEZIERTO) {
    [all...]
agg_basics.h 260 struct point_type : public CFX_Object { struct in namespace:agg
263 point_type() {} function in struct:agg::point_type
264 point_type(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} function in struct:agg::point_type
266 struct point_type_flag : public point_type {
272 point_type_flag(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {}
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 678 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
679 if(point_type == PT_MOVETO) {
681 } else if(point_type == PT_LINETO) {
686 } else if(point_type == PT_BEZIERTO) {
    [all...]
fx_win32_gdipext.cpp 906 int point_type = pPoints[i].m_Flag & FXPT_TYPE; local
    [all...]

Completed in 2813 milliseconds