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

Side by Side Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 9 #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
10 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 10 #define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
(...skipping 1769 matching lines...) Expand 10 before | Expand all | Expand 10 after
1780 } 1780 }
1781 1781
1782 void PostSubBufferCHROMIUM(GLint x, GLint y, GLint width, GLint height) { 1782 void PostSubBufferCHROMIUM(GLint x, GLint y, GLint width, GLint height) {
1783 gles2::cmds::PostSubBufferCHROMIUM* c = 1783 gles2::cmds::PostSubBufferCHROMIUM* c =
1784 GetCmdSpace<gles2::cmds::PostSubBufferCHROMIUM>(); 1784 GetCmdSpace<gles2::cmds::PostSubBufferCHROMIUM>();
1785 if (c) { 1785 if (c) {
1786 c->Init(x, y, width, height); 1786 c->Init(x, y, width, height);
1787 } 1787 }
1788 } 1788 }
1789 1789
1790 void SetOverlayPlaneCHROMIUM(GLint plane_id,
1791 GLenum texture_id,
1792 GLint x,
1793 GLint y,
1794 GLint width,
1795 GLint height) {
1796 gles2::cmds::SetOverlayPlaneCHROMIUM* c =
1797 GetCmdSpace<gles2::cmds::SetOverlayPlaneCHROMIUM>();
1798 if (c) {
1799 c->Init(plane_id, texture_id, x, y, width, height);
1800 }
1801 }
1802
1790 void TexImageIOSurface2DCHROMIUM( 1803 void TexImageIOSurface2DCHROMIUM(
1791 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId, 1804 GLenum target, GLsizei width, GLsizei height, GLuint ioSurfaceId,
1792 GLuint plane) { 1805 GLuint plane) {
1793 gles2::cmds::TexImageIOSurface2DCHROMIUM* c = 1806 gles2::cmds::TexImageIOSurface2DCHROMIUM* c =
1794 GetCmdSpace<gles2::cmds::TexImageIOSurface2DCHROMIUM>(); 1807 GetCmdSpace<gles2::cmds::TexImageIOSurface2DCHROMIUM>();
1795 if (c) { 1808 if (c) {
1796 c->Init(target, width, height, ioSurfaceId, plane); 1809 c->Init(target, width, height, ioSurfaceId, plane);
1797 } 1810 }
1798 } 1811 }
1799 1812
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
2017 void DiscardBackbufferCHROMIUM() { 2030 void DiscardBackbufferCHROMIUM() {
2018 gles2::cmds::DiscardBackbufferCHROMIUM* c = 2031 gles2::cmds::DiscardBackbufferCHROMIUM* c =
2019 GetCmdSpace<gles2::cmds::DiscardBackbufferCHROMIUM>(); 2032 GetCmdSpace<gles2::cmds::DiscardBackbufferCHROMIUM>();
2020 if (c) { 2033 if (c) {
2021 c->Init(); 2034 c->Init();
2022 } 2035 }
2023 } 2036 }
2024 2037
2025 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 2038 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
2026 2039
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698