| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. |
| 3 * 2010 Dirk Schulze <krit@webkit.org> | 3 * 2010 Dirk Schulze <krit@webkit.org> |
| 4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 this->setA(decomp.remainderA); | 383 this->setA(decomp.remainderA); |
| 384 this->setB(decomp.remainderB); | 384 this->setB(decomp.remainderB); |
| 385 this->setC(decomp.remainderC); | 385 this->setC(decomp.remainderC); |
| 386 this->setD(decomp.remainderD); | 386 this->setD(decomp.remainderD); |
| 387 this->setE(decomp.translateX); | 387 this->setE(decomp.translateX); |
| 388 this->setF(decomp.translateY); | 388 this->setF(decomp.translateY); |
| 389 this->rotateRadians(decomp.angle); | 389 this->rotateRadians(decomp.angle); |
| 390 this->scale(decomp.scaleX, decomp.scaleY); | 390 this->scale(decomp.scaleX, decomp.scaleY); |
| 391 } | 391 } |
| 392 | 392 |
| 393 } | 393 } // namespace blink |
| OLD | NEW |