| 58 | } |
| 59 | |
| 60 | Size Size::fromPackedPixels(int64_t packed, float pointScale) { |
| 61 | auto pair = unpackIntPair(packed); |
| 62 | return fromPixels(pair.first, pair.second, pointScale); |
| 63 | } |
| 64 | |
| 65 | Frame::Frame() = default; |
| 66 | Frame::Frame(float x, float y, float width, float height) : x(x), y(y), width(width), height(height) {} |
nothing calls this directly
no test coverage detected