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

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

Issue 780433006: Add framebuffer object related commands to command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tex
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_implementation_impl_autogen.h
diff --git a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
index d67e7edf0059f85c44d8fea7d026fe6585ae0cca..6220b6c9ee5d168ba048217d3ac367299e6e3793 100644
--- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
@@ -1032,6 +1032,62 @@ void GLES2Implementation::Hint(GLenum target, GLenum mode) {
CheckGLError();
}
+void GLES2Implementation::InvalidateFramebuffer(GLenum target,
+ GLsizei count,
+ const GLenum* attachments) {
+ GPU_CLIENT_SINGLE_THREAD_CHECK();
+ GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glInvalidateFramebuffer("
+ << GLES2Util::GetStringFrameBufferTarget(target) << ", "
+ << count << ", " << static_cast<const void*>(attachments)
+ << ")");
+ GPU_CLIENT_LOG_CODE_BLOCK({
+ for (GLsizei i = 0; i < count; ++i) {
+ GPU_CLIENT_LOG(" " << i << ": " << attachments[0 + i * 1]);
+ }
+ });
+ if (count < 0) {
+ SetGLError(GL_INVALID_VALUE, "glInvalidateFramebuffer", "count < 0");
+ return;
+ }
+ helper_->InvalidateFramebufferImmediate(target, count, attachments);
+ CheckGLError();
+}
+
+void GLES2Implementation::InvalidateSubFramebuffer(GLenum target,
+ GLsizei count,
+ const GLenum* attachments,
+ GLint x,
+ GLint y,
+ GLsizei width,
+ GLsizei height) {
+ GPU_CLIENT_SINGLE_THREAD_CHECK();
+ GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glInvalidateSubFramebuffer("
+ << GLES2Util::GetStringFrameBufferTarget(target) << ", "
+ << count << ", " << static_cast<const void*>(attachments)
+ << ", " << x << ", " << y << ", " << width << ", "
+ << height << ")");
+ GPU_CLIENT_LOG_CODE_BLOCK({
+ for (GLsizei i = 0; i < count; ++i) {
+ GPU_CLIENT_LOG(" " << i << ": " << attachments[0 + i * 1]);
+ }
+ });
+ if (count < 0) {
+ SetGLError(GL_INVALID_VALUE, "glInvalidateSubFramebuffer", "count < 0");
+ return;
+ }
+ if (width < 0) {
+ SetGLError(GL_INVALID_VALUE, "glInvalidateSubFramebuffer", "width < 0");
+ return;
+ }
+ if (height < 0) {
+ SetGLError(GL_INVALID_VALUE, "glInvalidateSubFramebuffer", "height < 0");
+ return;
+ }
+ helper_->InvalidateSubFramebufferImmediate(target, count, attachments, x, y,
+ width, height);
+ CheckGLError();
+}
+
GLboolean GLES2Implementation::IsBuffer(GLuint buffer) {
GPU_CLIENT_SINGLE_THREAD_CHECK();
TRACE_EVENT0("gpu", "GLES2Implementation::IsBuffer");
@@ -1157,6 +1213,14 @@ void GLES2Implementation::PolygonOffset(GLfloat factor, GLfloat units) {
CheckGLError();
}
+void GLES2Implementation::ReadBuffer(GLenum src) {
+ GPU_CLIENT_SINGLE_THREAD_CHECK();
+ GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glReadBuffer("
+ << GLES2Util::GetStringEnum(src) << ")");
+ helper_->ReadBuffer(src);
+ CheckGLError();
+}
+
void GLES2Implementation::ReleaseShaderCompiler() {
GPU_CLIENT_SINGLE_THREAD_CHECK();
GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glReleaseShaderCompiler("

Powered by Google App Engine
This is Rietveld 408576698