| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Google Inc. All rights reserved. | 2 * Copyright (c) 2013, 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 24 matching lines...) Expand all Loading... |
| 35 #include "platform/geometry/IntSize.h" | 35 #include "platform/geometry/IntSize.h" |
| 36 #include "platform/graphics/GraphicsTypes.h" | 36 #include "platform/graphics/GraphicsTypes.h" |
| 37 #include "third_party/khronos/GLES2/gl2.h" | 37 #include "third_party/khronos/GLES2/gl2.h" |
| 38 #include "third_party/skia/include/core/SkPaint.h" | 38 #include "third_party/skia/include/core/SkPaint.h" |
| 39 #include "wtf/Allocator.h" | 39 #include "wtf/Allocator.h" |
| 40 #include "wtf/Noncopyable.h" | 40 #include "wtf/Noncopyable.h" |
| 41 #include "wtf/PassRefPtr.h" | 41 #include "wtf/PassRefPtr.h" |
| 42 | 42 |
| 43 class SkBitmap; | 43 class SkBitmap; |
| 44 class SkCanvas; | 44 class SkCanvas; |
| 45 class SkColorSpace; |
| 45 class SkImage; | 46 class SkImage; |
| 46 struct SkImageInfo; | 47 struct SkImageInfo; |
| 47 class SkPicture; | 48 class SkPicture; |
| 48 | 49 |
| 49 namespace blink { | 50 namespace blink { |
| 50 | 51 |
| 51 class ImageBuffer; | 52 class ImageBuffer; |
| 52 class WebLayer; | 53 class WebLayer; |
| 53 class FloatRect; | 54 class FloatRect; |
| 54 class GraphicsContext; | 55 class GraphicsContext; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 79 virtual void flush(FlushReason); // Execute all deferred rendering immediate
ly | 80 virtual void flush(FlushReason); // Execute all deferred rendering immediate
ly |
| 80 virtual void flushGpu(FlushReason reason) { flush(reason); } // Like flush,
but flushes all the way down to the GPU context if the surface uses the GPU | 81 virtual void flushGpu(FlushReason reason) { flush(reason); } // Like flush,
but flushes all the way down to the GPU context if the surface uses the GPU |
| 81 virtual void prepareSurfaceForPaintingIfNeeded() { } | 82 virtual void prepareSurfaceForPaintingIfNeeded() { } |
| 82 virtual bool writePixels(const SkImageInfo& origInfo, const void* pixels, si
ze_t rowBytes, int x, int y); | 83 virtual bool writePixels(const SkImageInfo& origInfo, const void* pixels, si
ze_t rowBytes, int x, int y); |
| 83 | 84 |
| 84 // May return nullptr if the surface is GPU-backed and the GPU context was l
ost. | 85 // May return nullptr if the surface is GPU-backed and the GPU context was l
ost. |
| 85 virtual PassRefPtr<SkImage> newImageSnapshot(AccelerationHint, SnapshotReaso
n) = 0; | 86 virtual PassRefPtr<SkImage> newImageSnapshot(AccelerationHint, SnapshotReaso
n) = 0; |
| 86 | 87 |
| 87 OpacityMode getOpacityMode() const { return m_opacityMode; } | 88 OpacityMode getOpacityMode() const { return m_opacityMode; } |
| 88 const IntSize& size() const { return m_size; } | 89 const IntSize& size() const { return m_size; } |
| 90 const sk_sp<SkColorSpace> colorSpace() const { return m_colorSpace; } |
| 89 void notifyIsValidChanged(bool isValid) const; | 91 void notifyIsValidChanged(bool isValid) const; |
| 90 | 92 |
| 91 protected: | 93 protected: |
| 92 ImageBufferSurface(const IntSize&, OpacityMode); | 94 ImageBufferSurface(const IntSize&, OpacityMode, sk_sp<SkColorSpace>); |
| 93 void clear(); | 95 void clear(); |
| 94 | 96 |
| 95 private: | 97 private: |
| 96 OpacityMode m_opacityMode; | 98 OpacityMode m_opacityMode; |
| 97 IntSize m_size; | 99 IntSize m_size; |
| 100 sk_sp<SkColorSpace> m_colorSpace; |
| 98 }; | 101 }; |
| 99 | 102 |
| 100 } // namespace blink | 103 } // namespace blink |
| 101 | 104 |
| 102 #endif | 105 #endif |
| OLD | NEW |