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

Side by Side Diff: gpu/blink/webgraphicscontext3d_impl.cc

Issue 1551143002: Remove the "target" argument from CopyTextureChromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error. Created 4 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
« no previous file with comments | « gpu/blink/webgraphicscontext3d_impl.h ('k') | gpu/command_buffer/client/gles2_c_lib_autogen.h » ('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 (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 #include "gpu/blink/webgraphicscontext3d_impl.h" 5 #include "gpu/blink/webgraphicscontext3d_impl.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/atomicops.h" 9 #include "base/atomicops.h"
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 DELEGATE_TO_GL_3(getQueryObjectuivEXT, GetQueryObjectuivEXT, 868 DELEGATE_TO_GL_3(getQueryObjectuivEXT, GetQueryObjectuivEXT,
869 WebGLId, WGC3Denum, WGC3Duint*) 869 WebGLId, WGC3Denum, WGC3Duint*)
870 870
871 DELEGATE_TO_GL_2(queryCounterEXT, QueryCounterEXT, WebGLId, WGC3Denum) 871 DELEGATE_TO_GL_2(queryCounterEXT, QueryCounterEXT, WebGLId, WGC3Denum)
872 DELEGATE_TO_GL_3(getQueryObjectui64vEXT, 872 DELEGATE_TO_GL_3(getQueryObjectui64vEXT,
873 GetQueryObjectui64vEXT, 873 GetQueryObjectui64vEXT,
874 WebGLId, 874 WebGLId,
875 WGC3Denum, 875 WGC3Denum,
876 WGC3Duint64*) 876 WGC3Duint64*)
877 877
878 DELEGATE_TO_GL_8(copyTextureCHROMIUM, 878 DELEGATE_TO_GL_7(copyTextureCHROMIUM,
879 CopyTextureCHROMIUM, 879 CopyTextureCHROMIUM,
880 WGC3Denum,
881 WebGLId, 880 WebGLId,
882 WebGLId, 881 WebGLId,
883 WGC3Denum, 882 WGC3Denum,
884 WGC3Denum, 883 WGC3Denum,
885 WGC3Dboolean, 884 WGC3Dboolean,
886 WGC3Dboolean, 885 WGC3Dboolean,
887 WGC3Dboolean); 886 WGC3Dboolean);
888 887
889 DELEGATE_TO_GL_12(copySubTextureCHROMIUM, 888 DELEGATE_TO_GL_11(copySubTextureCHROMIUM,
890 CopySubTextureCHROMIUM, 889 CopySubTextureCHROMIUM,
891 WGC3Denum,
892 WebGLId, 890 WebGLId,
893 WebGLId, 891 WebGLId,
894 WGC3Dint, 892 WGC3Dint,
895 WGC3Dint, 893 WGC3Dint,
896 WGC3Dint, 894 WGC3Dint,
897 WGC3Dint, 895 WGC3Dint,
898 WGC3Dsizei, 896 WGC3Dsizei,
899 WGC3Dsizei, 897 WGC3Dsizei,
900 WGC3Dboolean, 898 WGC3Dboolean,
901 WGC3Dboolean, 899 WGC3Dboolean,
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 output_attribs->context_type = ::gpu::gles2::CONTEXT_TYPE_WEBGL2; 1296 output_attribs->context_type = ::gpu::gles2::CONTEXT_TYPE_WEBGL2;
1299 break; 1297 break;
1300 default: 1298 default:
1301 NOTREACHED(); 1299 NOTREACHED();
1302 output_attribs->context_type = ::gpu::gles2::CONTEXT_TYPE_OPENGLES2; 1300 output_attribs->context_type = ::gpu::gles2::CONTEXT_TYPE_OPENGLES2;
1303 break; 1301 break;
1304 } 1302 }
1305 } 1303 }
1306 1304
1307 } // namespace gpu_blink 1305 } // namespace gpu_blink
OLDNEW
« no previous file with comments | « gpu/blink/webgraphicscontext3d_impl.h ('k') | gpu/command_buffer/client/gles2_c_lib_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698