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

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

Issue 812543002: Update from https://crrev.com/308331 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 c3d2803854a7761cad3ab62d6ae1e97abb84550f..fcd196d52c824bd7a77d9375af8e6e52b106b24b 100644
--- a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
@@ -29,9 +29,14 @@ void GLES2InterfaceStub::BindFramebuffer(GLenum /* target */,
void GLES2InterfaceStub::BindRenderbuffer(GLenum /* target */,
GLuint /* renderbuffer */) {
}
+void GLES2InterfaceStub::BindSampler(GLuint /* unit */, GLuint /* sampler */) {
+}
void GLES2InterfaceStub::BindTexture(GLenum /* target */,
GLuint /* texture */) {
}
+void GLES2InterfaceStub::BindTransformFeedback(GLenum /* target */,
+ GLuint /* transformfeedback */) {
+}
void GLES2InterfaceStub::BlendColor(GLclampf /* red */,
GLclampf /* green */,
GLclampf /* blue */,
@@ -143,11 +148,17 @@ void GLES2InterfaceStub::DeleteRenderbuffers(
GLsizei /* n */,
const GLuint* /* renderbuffers */) {
}
+void GLES2InterfaceStub::DeleteSamplers(GLsizei /* n */,
+ const GLuint* /* samplers */) {
+}
void GLES2InterfaceStub::DeleteShader(GLuint /* shader */) {
}
void GLES2InterfaceStub::DeleteTextures(GLsizei /* n */,
const GLuint* /* textures */) {
}
+void GLES2InterfaceStub::DeleteTransformFeedbacks(GLsizei /* n */,
+ const GLuint* /* ids */) {
+}
void GLES2InterfaceStub::DepthFunc(GLenum /* func */) {
}
void GLES2InterfaceStub::DepthMask(GLboolean /* flag */) {
@@ -209,8 +220,13 @@ void GLES2InterfaceStub::GenFramebuffers(GLsizei /* n */,
void GLES2InterfaceStub::GenRenderbuffers(GLsizei /* n */,
GLuint* /* renderbuffers */) {
}
+void GLES2InterfaceStub::GenSamplers(GLsizei /* n */, GLuint* /* samplers */) {
+}
void GLES2InterfaceStub::GenTextures(GLsizei /* n */, GLuint* /* textures */) {
}
+void GLES2InterfaceStub::GenTransformFeedbacks(GLsizei /* n */,
+ GLuint* /* ids */) {
+}
void GLES2InterfaceStub::GetActiveAttrib(GLuint /* program */,
GLuint /* index */,
GLsizei /* bufsize */,
@@ -275,6 +291,14 @@ void GLES2InterfaceStub::GetRenderbufferParameteriv(GLenum /* target */,
GLenum /* pname */,
GLint* /* params */) {
}
+void GLES2InterfaceStub::GetSamplerParameterfv(GLuint /* sampler */,
+ GLenum /* pname */,
+ GLfloat* /* params */) {
+}
+void GLES2InterfaceStub::GetSamplerParameteriv(GLuint /* sampler */,
+ GLenum /* pname */,
+ GLint* /* params */) {
+}
void GLES2InterfaceStub::GetShaderiv(GLuint /* shader */,
GLenum /* pname */,
GLint* /* params */) {
@@ -360,16 +384,25 @@ GLboolean GLES2InterfaceStub::IsProgram(GLuint /* program */) {
GLboolean GLES2InterfaceStub::IsRenderbuffer(GLuint /* renderbuffer */) {
return 0;
}
+GLboolean GLES2InterfaceStub::IsSampler(GLuint /* sampler */) {
+ return 0;
+}
GLboolean GLES2InterfaceStub::IsShader(GLuint /* shader */) {
return 0;
}
GLboolean GLES2InterfaceStub::IsTexture(GLuint /* texture */) {
return 0;
}
+GLboolean GLES2InterfaceStub::IsTransformFeedback(
+ GLuint /* transformfeedback */) {
+ return 0;
+}
void GLES2InterfaceStub::LineWidth(GLfloat /* width */) {
}
void GLES2InterfaceStub::LinkProgram(GLuint /* program */) {
}
+void GLES2InterfaceStub::PauseTransformFeedback() {
+}
void GLES2InterfaceStub::PixelStorei(GLenum /* pname */, GLint /* param */) {
}
void GLES2InterfaceStub::PolygonOffset(GLfloat /* factor */,
@@ -392,9 +425,27 @@ void GLES2InterfaceStub::RenderbufferStorage(GLenum /* target */,
GLsizei /* width */,
GLsizei /* height */) {
}
+void GLES2InterfaceStub::ResumeTransformFeedback() {
+}
void GLES2InterfaceStub::SampleCoverage(GLclampf /* value */,
GLboolean /* invert */) {
}
+void GLES2InterfaceStub::SamplerParameterf(GLuint /* sampler */,
+ GLenum /* pname */,
+ GLfloat /* param */) {
+}
+void GLES2InterfaceStub::SamplerParameterfv(GLuint /* sampler */,
+ GLenum /* pname */,
+ const GLfloat* /* params */) {
+}
+void GLES2InterfaceStub::SamplerParameteri(GLuint /* sampler */,
+ GLenum /* pname */,
+ GLint /* param */) {
+}
+void GLES2InterfaceStub::SamplerParameteriv(GLuint /* sampler */,
+ GLenum /* pname */,
+ const GLint* /* params */) {
+}
void GLES2InterfaceStub::Scissor(GLint /* x */,
GLint /* y */,
GLsizei /* width */,
@@ -743,8 +794,12 @@ GLboolean GLES2InterfaceStub::IsQueryEXT(GLuint /* id */) {
}
void GLES2InterfaceStub::BeginQueryEXT(GLenum /* target */, GLuint /* id */) {
}
+void GLES2InterfaceStub::BeginTransformFeedback(GLenum /* primitivemode */) {
+}
void GLES2InterfaceStub::EndQueryEXT(GLenum /* target */) {
}
+void GLES2InterfaceStub::EndTransformFeedback() {
+}
void GLES2InterfaceStub::GetQueryivEXT(GLenum /* target */,
GLenum /* pname */,
GLint* /* params */) {

Powered by Google App Engine
This is Rietveld 408576698