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

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

Issue 2065843003: Remove transform feedback validation in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix transform feedback status query Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.cpp b/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.cpp
index 3148c0a48b548bf85b5d19d968dc48f9cafd5b9d..76b90a117b51985dc14088b1cdae4fda3a94dce7 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.cpp
@@ -23,8 +23,6 @@ WebGLTransformFeedback::~WebGLTransformFeedback()
WebGLTransformFeedback::WebGLTransformFeedback(WebGL2RenderingContextBase* ctx)
: WebGLSharedPlatform3DObject(ctx)
, m_target(0)
- , m_active(false)
- , m_paused(false)
, m_program(nullptr)
{
GLuint tf;
@@ -46,16 +44,6 @@ void WebGLTransformFeedback::setTarget(GLenum target)
m_target = target;
}
-void WebGLTransformFeedback::setActive(bool active)
-{
- m_active = active;
-}
-
-void WebGLTransformFeedback::setPaused(bool paused)
-{
- m_paused = paused;
-}
-
void WebGLTransformFeedback::setProgram(WebGLProgram* program)
{
m_program = program;
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698