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

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

Issue 1783743002: [WebGL] a bunch of small fixes: unnecessary arguments, typos... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/WebGLRenderingContextBase.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
index 0fbc8c360955d458ad9ad99e5f63fc1348a52c72..9263e7415a7dc6f140453ca97d8f67f9b8dba039 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
@@ -996,10 +996,10 @@ protected:
bool validateImageBitmap(const char* functionName, ImageBitmap*, ExceptionState&);
// Helper function to validate drawArrays(Instanced) calls
- bool validateDrawArrays(const char* functionName, GLenum mode, GLint first, GLsizei count);
+ bool validateDrawArrays(const char* functionName);
// Helper function to validate drawElements(Instanced) calls
- bool validateDrawElements(const char* functionName, GLenum mode, GLsizei count, GLenum type, long long offset);
+ bool validateDrawElements(const char* functionName, GLenum type, long long offset);
// Helper functions to bufferData() and bufferSubData().
void bufferDataImpl(GLenum target, long long size, const void* data, GLenum usage);

Powered by Google App Engine
This is Rietveld 408576698