Searched refs:v_control (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftoutln.c | 59 FT_Vector v_control; in FT_Outline_Decompose() local 103 v_control = v_start; in FT_Outline_Decompose() 168 v_control.x = SCALED( point->x ); in FT_Outline_Decompose() 169 v_control.y = SCALED( point->y ); in FT_Outline_Decompose() 190 v_control.x / 64.0, v_control.y / 64.0 )); in FT_Outline_Decompose() 191 error = func_interface->conic_to( &v_control, &vec, user ); in FT_Outline_Decompose() 200 v_middle.x = ( v_control.x + vec.x ) / 2; in FT_Outline_Decompose() 201 v_middle.y = ( v_control.y + vec.y ) / 2; in FT_Outline_Decompose() 206 v_control.x / 64.0, v_control.y / 64.0 )); in FT_Outline_Decompose() 211 v_control = vec; in FT_Outline_Decompose() [all …]
|
A D | ftstroke.c | 2048 FT_Vector v_control; in FT_Stroker_ParseOutline() local 2087 v_control = v_start; in FT_Stroker_ParseOutline() 2145 v_control.x = point->x; in FT_Stroker_ParseOutline() 2146 v_control.y = point->y; in FT_Stroker_ParseOutline() 2163 error = FT_Stroker_ConicTo( stroker, &v_control, &vec ); in FT_Stroker_ParseOutline() 2172 v_middle.x = ( v_control.x + vec.x ) / 2; in FT_Stroker_ParseOutline() 2173 v_middle.y = ( v_control.y + vec.y ) / 2; in FT_Stroker_ParseOutline() 2175 error = FT_Stroker_ConicTo( stroker, &v_control, &v_middle ); in FT_Stroker_ParseOutline() 2179 v_control = vec; in FT_Stroker_ParseOutline() 2183 error = FT_Stroker_ConicTo( stroker, &v_control, &v_start ); in FT_Stroker_ParseOutline()
|
/AliOS-Things-master/components/freetype/src/smooth/ |
A D | ftgrays.c | 1525 FT_Vector v_control; in FT_Outline_Decompose() local 1569 v_control = v_start; in FT_Outline_Decompose() 1634 v_control.x = SCALED( point->x ); in FT_Outline_Decompose() 1635 v_control.y = SCALED( point->y ); in FT_Outline_Decompose() 1656 v_control.x / 64.0, v_control.y / 64.0 )); in FT_Outline_Decompose() 1657 error = func_interface->conic_to( &v_control, &vec, user ); in FT_Outline_Decompose() 1666 v_middle.x = ( v_control.x + vec.x ) / 2; in FT_Outline_Decompose() 1667 v_middle.y = ( v_control.y + vec.y ) / 2; in FT_Outline_Decompose() 1672 v_control.x / 64.0, v_control.y / 64.0 )); in FT_Outline_Decompose() 1677 v_control = vec; in FT_Outline_Decompose() [all …]
|
/AliOS-Things-master/components/freetype/src/raster/ |
A D | ftraster.c | 1819 FT_Vector v_control; in Decompose_Curve() local 1844 v_control = v_start; in Decompose_Curve() 1911 v_control.x = SCALED( point[0].x ); in Decompose_Curve() 1912 v_control.y = SCALED( point[0].y ); in Decompose_Curve() 1915 SWAP_( v_control.x, v_control.y ); in Decompose_Curve() 1936 if ( Conic_To( RAS_VARS v_control.x, v_control.y, x, y ) ) in Decompose_Curve() 1944 v_middle.x = ( v_control.x + x ) / 2; in Decompose_Curve() 1947 if ( Conic_To( RAS_VARS v_control.x, v_control.y, in Decompose_Curve() 1951 v_control.x = x; in Decompose_Curve() 1952 v_control.y = y; in Decompose_Curve() [all …]
|
Completed in 22 milliseconds