Lines Matching refs:curr
82 path_builder->curr[0].x = x0; in skc_path_move_to_1()
83 path_builder->curr[0].y = y0; in skc_path_move_to_1()
84 path_builder->curr[1].x = x0; in skc_path_move_to_1()
85 path_builder->curr[1].y = y0; in skc_path_move_to_1()
94 path_builder->curr[0].x = x0; in skc_path_move_to_2()
95 path_builder->curr[0].y = y0; in skc_path_move_to_2()
96 path_builder->curr[1].x = x1; in skc_path_move_to_2()
97 path_builder->curr[1].y = y1; in skc_path_move_to_2()
131 *path_builder->line.coords[0]++ = path_builder->curr[0].x; in skc_path_line_to()
132 *path_builder->line.coords[1]++ = path_builder->curr[0].y; in skc_path_line_to()
152 *path_builder->quad.coords[0]++ = path_builder->curr[0].x; in skc_path_quad_to()
153 *path_builder->quad.coords[1]++ = path_builder->curr[0].y; in skc_path_quad_to()
168 float const x1 = path_builder->curr[0].x * 2.0f - path_builder->curr[1].x; in skc_path_quad_smooth_to()
169 float const y1 = path_builder->curr[0].y * 2.0f - path_builder->curr[1].y; in skc_path_quad_smooth_to()
186 *path_builder->cubic.coords[0]++ = path_builder->curr[0].x; in skc_path_cubic_to()
187 *path_builder->cubic.coords[1]++ = path_builder->curr[0].y; in skc_path_cubic_to()
205 float const x1 = path_builder->curr[0].x * 2.0f - path_builder->curr[1].x; in skc_path_cubic_smooth_to()
206 float const y1 = path_builder->curr[0].y * 2.0f - path_builder->curr[1].y; in skc_path_cubic_smooth_to()