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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContext.cpp

Issue 2392313004: [wrapper-tracing] Add tracing to WebGLRenderingContextBase and friends (Closed)
Patch Set: Add WebGL2RenderingContextBase Created 4 years, 2 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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 visitor->traceWrappers(m_webglDebugShaders); 261 visitor->traceWrappers(m_webglDebugShaders);
262 visitor->traceWrappers(m_webglDrawBuffers); 262 visitor->traceWrappers(m_webglDrawBuffers);
263 visitor->traceWrappers(m_webglCompressedTextureASTC); 263 visitor->traceWrappers(m_webglCompressedTextureASTC);
264 visitor->traceWrappers(m_webglCompressedTextureATC); 264 visitor->traceWrappers(m_webglCompressedTextureATC);
265 visitor->traceWrappers(m_webglCompressedTextureES30); 265 visitor->traceWrappers(m_webglCompressedTextureES30);
266 visitor->traceWrappers(m_webglCompressedTextureETC1); 266 visitor->traceWrappers(m_webglCompressedTextureETC1);
267 visitor->traceWrappers(m_webglCompressedTexturePVRTC); 267 visitor->traceWrappers(m_webglCompressedTexturePVRTC);
268 visitor->traceWrappers(m_webglCompressedTextureS3TC); 268 visitor->traceWrappers(m_webglCompressedTextureS3TC);
269 visitor->traceWrappers(m_webglCompressedTextureS3TCsRGB); 269 visitor->traceWrappers(m_webglCompressedTextureS3TCsRGB);
270 visitor->traceWrappers(m_webglDepthTexture); 270 visitor->traceWrappers(m_webglDepthTexture);
271 WebGLRenderingContextBase::traceWrappers(visitor);
271 } 272 }
273
272 } // namespace blink 274 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698