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

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

Issue 333203003: Change GLInternalFormat param from GLint to GLenum. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « cc/test/test_gles2_interface.cc ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 GLsizei width, 899 GLsizei width,
900 GLsizei height, 900 GLsizei height,
901 GLenum format, 901 GLenum format,
902 GLenum type, 902 GLenum type,
903 const void* data) { 903 const void* data) {
904 gles2::GetGLContext()->AsyncTexSubImage2DCHROMIUM( 904 gles2::GetGLContext()->AsyncTexSubImage2DCHROMIUM(
905 target, level, xoffset, yoffset, width, height, format, type, data); 905 target, level, xoffset, yoffset, width, height, format, type, data);
906 } 906 }
907 void GLES2AsyncTexImage2DCHROMIUM(GLenum target, 907 void GLES2AsyncTexImage2DCHROMIUM(GLenum target,
908 GLint level, 908 GLint level,
909 GLint internalformat, 909 GLenum internalformat,
910 GLsizei width, 910 GLsizei width,
911 GLsizei height, 911 GLsizei height,
912 GLint border, 912 GLint border,
913 GLenum format, 913 GLenum format,
914 GLenum type, 914 GLenum type,
915 const void* pixels) { 915 const void* pixels) {
916 gles2::GetGLContext()->AsyncTexImage2DCHROMIUM(target, 916 gles2::GetGLContext()->AsyncTexImage2DCHROMIUM(target,
917 level, 917 level,
918 internalformat, 918 internalformat,
919 width, 919 width,
(...skipping 832 matching lines...) Expand 10 before | Expand all | Expand 10 after
1752 "glScheduleOverlayPlaneCHROMIUM", 1752 "glScheduleOverlayPlaneCHROMIUM",
1753 reinterpret_cast<GLES2FunctionPointer>(glScheduleOverlayPlaneCHROMIUM), 1753 reinterpret_cast<GLES2FunctionPointer>(glScheduleOverlayPlaneCHROMIUM),
1754 }, 1754 },
1755 { 1755 {
1756 NULL, NULL, 1756 NULL, NULL,
1757 }, 1757 },
1758 }; 1758 };
1759 1759
1760 } // namespace gles2 1760 } // namespace gles2
1761 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ 1761 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
OLDNEW
« no previous file with comments | « cc/test/test_gles2_interface.cc ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698