| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 // Overall direction for the TextRun, dictates which order each individual | 119 // Overall direction for the TextRun, dictates which order each individual |
| 120 // sub run (represented by RunInfo structs in the m_runs vector) can have a | 120 // sub run (represented by RunInfo structs in the m_runs vector) can have a |
| 121 // different text direction. | 121 // different text direction. |
| 122 unsigned direction_ : 1; | 122 unsigned direction_ : 1; |
| 123 | 123 |
| 124 // Tracks whether any runs contain glyphs with a y-offset != 0. | 124 // Tracks whether any runs contain glyphs with a y-offset != 0. |
| 125 unsigned has_vertical_offsets_ : 1; | 125 unsigned has_vertical_offsets_ : 1; |
| 126 | 126 |
| 127 friend class HarfBuzzShaper; | 127 friend class HarfBuzzShaper; |
| 128 friend class ShapeResultBuffer; | 128 friend class ShapeResultBuffer; |
| 129 friend class ShapeResultBloberizer; |
| 129 }; | 130 }; |
| 130 | 131 |
| 131 } // namespace blink | 132 } // namespace blink |
| 132 | 133 |
| 133 #endif // ShapeResult_h | 134 #endif // ShapeResult_h |
| OLD | NEW |