Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Side by Side Diff: third_party/WebKit/Source/platform/graphics/gpu/AcceleratedImageBufferSurface.h

Issue 2321063002: Reland of Allow canvases to be GPU-accelerated in Workers (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698