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

Unified Diff: gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h

Issue 863253002: Update from https://crrev.com/312600 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 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: gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
diff --git a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
index ce953d7f9656ef28f6ceab05e7160ef603fdd7cd..eddbe91083cacf8705af64adc7a9beb70009d180 100644
--- a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
@@ -178,6 +178,8 @@ void GLES2InterfaceStub::DeleteRenderbuffers(
void GLES2InterfaceStub::DeleteSamplers(GLsizei /* n */,
const GLuint* /* samplers */) {
}
+void GLES2InterfaceStub::DeleteSync(GLsync /* sync */) {
+}
void GLES2InterfaceStub::DeleteShader(GLuint /* shader */) {
}
void GLES2InterfaceStub::DeleteTextures(GLsizei /* n */,
@@ -213,6 +215,10 @@ void GLES2InterfaceStub::Enable(GLenum /* cap */) {
}
void GLES2InterfaceStub::EnableVertexAttribArray(GLuint /* index */) {
}
+GLsync GLES2InterfaceStub::FenceSync(GLenum /* condition */,
+ GLbitfield /* flags */) {
+ return 0;
+}
void GLES2InterfaceStub::Finish() {
}
void GLES2InterfaceStub::Flush() {
@@ -417,6 +423,9 @@ GLboolean GLES2InterfaceStub::IsSampler(GLuint /* sampler */) {
GLboolean GLES2InterfaceStub::IsShader(GLuint /* shader */) {
return 0;
}
+GLboolean GLES2InterfaceStub::IsSync(GLsync /* sync */) {
+ return 0;
+}
GLboolean GLES2InterfaceStub::IsTexture(GLuint /* texture */) {
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698