| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 CANVAS_DIMENSIONS, 32, | 5 CANVAS_DIMENSIONS, 32, |
| 6 PATH_MODE_CLEAR, | 6 PATH_MODE_CLEAR, |
| 7 MOVE_TO, 32, 32, | 7 MOVE_TO, 32, 32, |
| 8 LINE_TO, 16, 32, | 8 LINE_TO, 16, 32, |
| 9 LINE_TO, 16, 18, | 9 LINE_TO, 16, 18, |
| 10 CUBIC_TO, 16, 16.9f, 16.9f, 16, 18, 16, | 10 CUBIC_TO, 16, 16.9f, 16.9f, 16, 18, 16, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 LINE_TO, 25, 26.2f, | 36 LINE_TO, 25, 26.2f, |
| 37 LINE_TO, 26.8f, 28, | 37 LINE_TO, 26.8f, 28, |
| 38 CUBIC_TO, 27.13f, 28.34f, 27.67f, 28.34f, 28, 28, | 38 CUBIC_TO, 27.13f, 28.34f, 27.67f, 28.34f, 28, 28, |
| 39 CUBIC_TO, 28.34f, 27.67f, 28.34f, 27.13f, 28, 26.8f, | 39 CUBIC_TO, 28.34f, 27.67f, 28.34f, 27.13f, 28, 26.8f, |
| 40 LINE_TO, 26.2f, 25, | 40 LINE_TO, 26.2f, 25, |
| 41 LINE_TO, 28, 23.2f, | 41 LINE_TO, 28, 23.2f, |
| 42 CUBIC_TO, 28.34f, 22.87f, 28.34f, 22.33f, 28, 22, | 42 CUBIC_TO, 28.34f, 22.87f, 28.34f, 22.33f, 28, 22, |
| 43 CUBIC_TO, 27.67f, 21.66f, 27.13f, 21.66f, 26.8f, 22, | 43 CUBIC_TO, 27.67f, 21.66f, 27.13f, 21.66f, 26.8f, 22, |
| 44 CLOSE, | 44 CLOSE, |
| 45 END | 45 END |
| OLD | NEW |