| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2006,2007,2008, Google Inc. All rights reserved. | 2 * Copyright (c) 2006,2007,2008, 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 | 32 |
| 33 #include "platform/graphics/skia/SkiaUtils.h" | 33 #include "platform/graphics/skia/SkiaUtils.h" |
| 34 | 34 |
| 35 #include "SkColorPriv.h" | 35 #include "SkColorPriv.h" |
| 36 #include "SkRegion.h" | 36 #include "SkRegion.h" |
| 37 #include "platform/graphics/GraphicsContext.h" | 37 #include "platform/graphics/GraphicsContext.h" |
| 38 #include "platform/graphics/ImageBuffer.h" | 38 #include "platform/graphics/ImageBuffer.h" |
| 39 | 39 |
| 40 namespace WebCore { | 40 namespace blink { |
| 41 | 41 |
| 42 static const struct CompositOpToXfermodeMode { | 42 static const struct CompositOpToXfermodeMode { |
| 43 uint8_t mCompositOp; | 43 uint8_t mCompositOp; |
| 44 uint8_t m_xfermodeMode; | 44 uint8_t m_xfermodeMode; |
| 45 } gMapCompositOpsToXfermodeModes[] = { | 45 } gMapCompositOpsToXfermodeModes[] = { |
| 46 { CompositeClear, SkXfermode::kClear_Mode }, | 46 { CompositeClear, SkXfermode::kClear_Mode }, |
| 47 { CompositeCopy, SkXfermode::kSrc_Mode }, | 47 { CompositeCopy, SkXfermode::kSrc_Mode }, |
| 48 { CompositeSourceOver, SkXfermode::kSrcOver_Mode }, | 48 { CompositeSourceOver, SkXfermode::kSrcOver_Mode }, |
| 49 { CompositeSourceIn, SkXfermode::kSrcIn_Mode }, | 49 { CompositeSourceIn, SkXfermode::kSrcIn_Mode }, |
| 50 { CompositeSourceOut, SkXfermode::kSrcOut_Mode }, | 50 { CompositeSourceOut, SkXfermode::kSrcOut_Mode }, |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 result.setTranslateY(WebCoreDoubleToSkScalar(source.f())); | 182 result.setTranslateY(WebCoreDoubleToSkScalar(source.f())); |
| 183 | 183 |
| 184 // FIXME: Set perspective properly. | 184 // FIXME: Set perspective properly. |
| 185 result.setPerspX(0); | 185 result.setPerspX(0); |
| 186 result.setPerspY(0); | 186 result.setPerspY(0); |
| 187 result.set(SkMatrix::kMPersp2, SK_Scalar1); | 187 result.set(SkMatrix::kMPersp2, SK_Scalar1); |
| 188 | 188 |
| 189 return result; | 189 return result; |
| 190 } | 190 } |
| 191 | 191 |
| 192 } // namespace WebCore | 192 } // namespace blink |
| OLD | NEW |