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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridgeTest.cpp

Issue 1914233006: Implement offscreenCanvas.getContext('webgl') on a worker thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kbr@'s comment Created 4 years, 7 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 gpu::Capabilities getCapabilities() 80 gpu::Capabilities getCapabilities()
81 { 81 {
82 return gpu::Capabilities(); 82 return gpu::Capabilities();
83 } 83 }
84 84
85 gpu::gles2::GLES2Interface* contextGL() override 85 gpu::gles2::GLES2Interface* contextGL() override
86 { 86 {
87 return m_gl; 87 return m_gl;
88 } 88 }
89 89
90 bool bindToCurrentThread() override { return false; }
91
90 void setLostContextCallback(WebClosure) override {} 92 void setLostContextCallback(WebClosure) override {}
91 void setErrorMessageCallback(WebFunction<void(const char*, int32_t id)>) {} 93 void setErrorMessageCallback(WebFunction<void(const char*, int32_t id)>) {}
92 94
93 private: 95 private:
94 gpu::gles2::GLES2Interface* m_gl; 96 gpu::gles2::GLES2Interface* m_gl;
95 RefPtr<GrContext> m_grContext; 97 RefPtr<GrContext> m_grContext;
96 }; 98 };
97 99
98 class Canvas2DLayerBridgePtr { 100 class Canvas2DLayerBridgePtr {
99 public: 101 public:
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 WebExternalTextureMailbox mailbox; 1043 WebExternalTextureMailbox mailbox;
1042 EXPECT_FALSE(bridge->prepareMailbox(&mailbox, 0)); 1044 EXPECT_FALSE(bridge->prepareMailbox(&mailbox, 0));
1043 EXPECT_TRUE(bridge->checkSurfaceValid()); 1045 EXPECT_TRUE(bridge->checkSurfaceValid());
1044 1046
1045 // Tear down the bridge on the thread so that 'bridge' can go out of scope 1047 // Tear down the bridge on the thread so that 'bridge' can go out of scope
1046 // without crashing due to thread checks 1048 // without crashing due to thread checks
1047 postAndWaitDestroyBridgeTask(BLINK_FROM_HERE, testThread.get(), &bridge); 1049 postAndWaitDestroyBridgeTask(BLINK_FROM_HERE, testThread.get(), &bridge);
1048 } 1050 }
1049 1051
1050 } // namespace blink 1052 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698