| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file is auto-generated from | 5 // This file is auto-generated from |
| 6 // gpu/command_buffer/build_gles2_cmd_buffer.py | 6 // gpu/command_buffer/build_gles2_cmd_buffer.py |
| 7 // DO NOT EDIT! | 7 // DO NOT EDIT! |
| 8 | 8 |
| 9 // This file is included by gles2_trace_implementation.cc | 9 // This file is included by gles2_trace_implementation.cc |
| 10 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_IMPL_AUTOGEN_H_ | 10 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_IMPL_AUTOGEN_H_ |
| (...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 } | 847 } |
| 848 | 848 |
| 849 void GLES2TraceImplementation::RenderbufferStorageMultisampleEXT( | 849 void GLES2TraceImplementation::RenderbufferStorageMultisampleEXT( |
| 850 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, | 850 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, |
| 851 GLsizei height) { | 851 GLsizei height) { |
| 852 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::RenderbufferStorageMultisamp
leEXT"); // NOLINT | 852 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::RenderbufferStorageMultisamp
leEXT"); // NOLINT |
| 853 gl_->RenderbufferStorageMultisampleEXT( | 853 gl_->RenderbufferStorageMultisampleEXT( |
| 854 target, samples, internalformat, width, height); | 854 target, samples, internalformat, width, height); |
| 855 } | 855 } |
| 856 | 856 |
| 857 void GLES2TraceImplementation::FramebufferTexture2DMultisampleEXT( |
| 858 GLenum target, GLenum attachment, GLenum textarget, GLuint texture, |
| 859 GLint level, GLsizei samples) { |
| 860 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::FramebufferTexture2DMultisam
pleEXT"); // NOLINT |
| 861 gl_->FramebufferTexture2DMultisampleEXT( |
| 862 target, attachment, textarget, texture, level, samples); |
| 863 } |
| 864 |
| 857 void GLES2TraceImplementation::TexStorage2DEXT( | 865 void GLES2TraceImplementation::TexStorage2DEXT( |
| 858 GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, | 866 GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, |
| 859 GLsizei height) { | 867 GLsizei height) { |
| 860 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::TexStorage2DEXT"); | 868 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::TexStorage2DEXT"); |
| 861 gl_->TexStorage2DEXT(target, levels, internalFormat, width, height); | 869 gl_->TexStorage2DEXT(target, levels, internalFormat, width, height); |
| 862 } | 870 } |
| 863 | 871 |
| 864 void GLES2TraceImplementation::GenQueriesEXT(GLsizei n, GLuint* queries) { | 872 void GLES2TraceImplementation::GenQueriesEXT(GLsizei n, GLuint* queries) { |
| 865 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GenQueriesEXT"); | 873 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GenQueriesEXT"); |
| 866 gl_->GenQueriesEXT(n, queries); | 874 gl_->GenQueriesEXT(n, queries); |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1216 } | 1224 } |
| 1217 | 1225 |
| 1218 void GLES2TraceImplementation::DrawBuffersEXT( | 1226 void GLES2TraceImplementation::DrawBuffersEXT( |
| 1219 GLsizei count, const GLenum* bufs) { | 1227 GLsizei count, const GLenum* bufs) { |
| 1220 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::DrawBuffersEXT"); | 1228 TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::DrawBuffersEXT"); |
| 1221 gl_->DrawBuffersEXT(count, bufs); | 1229 gl_->DrawBuffersEXT(count, bufs); |
| 1222 } | 1230 } |
| 1223 | 1231 |
| 1224 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_IMPL_AUTOGEN_H_ | 1232 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_TRACE_IMPLEMENTATION_IMPL_AUTOGEN_H_ |
| 1225 | 1233 |
| OLD | NEW |