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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp

Issue 2401893002: [wrapper-tracing] WebGL and friends: Add write barriers (Closed)
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp b/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp
index a0c047befdbadad7e0ab7cd4f4850d8415e9b9a7..e75362f0fb60bab485e661aa5678587ef35aea74 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp
@@ -40,6 +40,8 @@ WebGLProgram::WebGLProgram(WebGLRenderingContextBase* ctx)
m_linkStatus(false),
m_linkCount(0),
m_activeTransformFeedbackCount(0),
+ m_vertexShader(this, nullptr),
+ m_fragmentShader(this, nullptr),
m_infoValid(true) {
setObject(ctx->contextGL()->CreateProgram());
}

Powered by Google App Engine
This is Rietveld 408576698