| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #include "SkSVGRadialGradient.h" | 10 #include "SkSVGRadialGradient.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 center.appendUnichar('['); | 33 center.appendUnichar('['); |
| 34 center.append(f_cx); | 34 center.append(f_cx); |
| 35 center.appendUnichar(','); | 35 center.appendUnichar(','); |
| 36 center.append(f_cy); | 36 center.append(f_cy); |
| 37 center.appendUnichar(']'); | 37 center.appendUnichar(']'); |
| 38 parser._addAttribute("center", center); | 38 parser._addAttribute("center", center); |
| 39 parser._addAttribute("radius", f_r); | 39 parser._addAttribute("radius", f_r); |
| 40 INHERITED::translate(parser, defState); | 40 INHERITED::translate(parser, defState); |
| 41 parser._endElement(); | 41 parser._endElement(); |
| 42 } | 42 } |
| OLD | NEW |