| 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 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class PLATFORM_EXPORT AcceleratedImageBufferSurface : public ImageBufferSurface
{ | 42 class PLATFORM_EXPORT AcceleratedImageBufferSurface : public ImageBufferSurface
{ |
| 43 WTF_MAKE_NONCOPYABLE(AcceleratedImageBufferSurface); USING_FAST_MALLOC(Accel
eratedImageBufferSurface); | 43 WTF_MAKE_NONCOPYABLE(AcceleratedImageBufferSurface); USING_FAST_MALLOC(Accel
eratedImageBufferSurface); |
| 44 public: | 44 public: |
| 45 AcceleratedImageBufferSurface(const IntSize&, OpacityMode = NonOpaque, sk_sp
<SkColorSpace> = nullptr); | 45 AcceleratedImageBufferSurface(const IntSize&, OpacityMode = NonOpaque, sk_sp
<SkColorSpace> = nullptr); |
| 46 ~AcceleratedImageBufferSurface() override { } | 46 ~AcceleratedImageBufferSurface() override { } |
| 47 | 47 |
| 48 SkCanvas* canvas() override { return m_surface ? m_surface->getCanvas() : nu
llptr; } | 48 SkCanvas* canvas() override { return m_surface ? m_surface->getCanvas() : nu
llptr; } |
| 49 bool isValid() const override { return m_surface; } | 49 bool isValid() const override; |
| 50 bool isAccelerated() const override { return true; } | 50 bool isAccelerated() const override { return true; } |
| 51 sk_sp<SkImage> newImageSnapshot(AccelerationHint, SnapshotReason) override; | 51 sk_sp<SkImage> newImageSnapshot(AccelerationHint, SnapshotReason) override; |
| 52 GLuint getBackingTextureHandleForOverwrite() override; | 52 GLuint getBackingTextureHandleForOverwrite() override; |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 std::unique_ptr<WebGraphicsContext3DProvider> m_contextProvider; | 55 unsigned m_contextId; |
| 56 sk_sp<SkSurface> m_surface; // Uses m_contextProvider. | 56 sk_sp<SkSurface> m_surface; // Uses m_contextProvider. |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 | 59 |
| 60 } // namespace blink | 60 } // namespace blink |
| 61 | 61 |
| 62 #endif | 62 #endif |
| OLD | NEW |