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

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

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
Index: third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h b/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h
index b69c3ed93b5ffd9bb71038cb4021638c1db39127..667c6dbf5afb884f369fdbd32b9f66ef2d5b4381 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLTransformFeedback.h
@@ -25,11 +25,6 @@ public:
bool hasEverBeenBound() const { return object() && m_target; }
- bool isActive() const { return m_active; }
- bool isPaused() const { return m_paused; }
- void setActive(bool);
- void setPaused(bool);
-
WebGLProgram* getProgram() const { return m_program; }
void setProgram(WebGLProgram*);
@@ -45,9 +40,6 @@ private:
GLenum m_target;
- bool m_active;
- bool m_paused;
-
Member<WebGLProgram> m_program;
};

Powered by Google App Engine
This is Rietveld 408576698