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

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

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/GLES2/gl2extchromium.h ('k') | gpu/blink/webgraphicscontext3d_impl.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 (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 #ifndef GPU_BLINK_WEBGRAPHICSCONTEXT3D_IMPL_H_ 5 #ifndef GPU_BLINK_WEBGRAPHICSCONTEXT3D_IMPL_H_
6 #define GPU_BLINK_WEBGRAPHICSCONTEXT3D_IMPL_H_ 6 #define GPU_BLINK_WEBGRAPHICSCONTEXT3D_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 void getQueryObjectuivEXT(blink::WebGLId query, 538 void getQueryObjectuivEXT(blink::WebGLId query,
539 blink::WGC3Denum pname, 539 blink::WGC3Denum pname,
540 blink::WGC3Duint* params) override; 540 blink::WGC3Duint* params) override;
541 541
542 void queryCounterEXT(blink::WebGLId query, blink::WGC3Denum target) override; 542 void queryCounterEXT(blink::WebGLId query, blink::WGC3Denum target) override;
543 void getQueryObjectui64vEXT(blink::WebGLId query, 543 void getQueryObjectui64vEXT(blink::WebGLId query,
544 blink::WGC3Denum pname, 544 blink::WGC3Denum pname,
545 blink::WGC3Duint64* params) override; 545 blink::WGC3Duint64* params) override;
546 546
547 void copyTextureCHROMIUM( 547 void copyTextureCHROMIUM(
548 blink::WGC3Denum target,
549 blink::WebGLId source_id, 548 blink::WebGLId source_id,
550 blink::WebGLId dest_id, 549 blink::WebGLId dest_id,
551 blink::WGC3Denum internal_format, 550 blink::WGC3Denum internal_format,
552 blink::WGC3Denum dest_type, 551 blink::WGC3Denum dest_type,
553 blink::WGC3Dboolean unpack_flip_y, 552 blink::WGC3Dboolean unpack_flip_y,
554 blink::WGC3Dboolean unpack_premultiply_alpha, 553 blink::WGC3Dboolean unpack_premultiply_alpha,
555 blink::WGC3Dboolean unpack_unmultiply_alpha) override; 554 blink::WGC3Dboolean unpack_unmultiply_alpha) override;
556 555
557 void copySubTextureCHROMIUM( 556 void copySubTextureCHROMIUM(
558 blink::WGC3Denum target,
559 blink::WebGLId source_id, 557 blink::WebGLId source_id,
560 blink::WebGLId dest_id, 558 blink::WebGLId dest_id,
561 blink::WGC3Dint xoffset, 559 blink::WGC3Dint xoffset,
562 blink::WGC3Dint yoffset, 560 blink::WGC3Dint yoffset,
563 blink::WGC3Dint x, 561 blink::WGC3Dint x,
564 blink::WGC3Dint y, 562 blink::WGC3Dint y,
565 blink::WGC3Dsizei width, 563 blink::WGC3Dsizei width,
566 blink::WGC3Dsizei height, 564 blink::WGC3Dsizei height,
567 blink::WGC3Dboolean unpack_flip_y, 565 blink::WGC3Dboolean unpack_flip_y,
568 blink::WGC3Dboolean unpack_premultiply_alpha, 566 blink::WGC3Dboolean unpack_premultiply_alpha,
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 std::vector<blink::WGC3Denum> synthetic_errors_; 978 std::vector<blink::WGC3Denum> synthetic_errors_;
981 979
982 ::gpu::gles2::GLES2Interface* gl_; 980 ::gpu::gles2::GLES2Interface* gl_;
983 bool lose_context_when_out_of_memory_; 981 bool lose_context_when_out_of_memory_;
984 uint32_t flush_id_; 982 uint32_t flush_id_;
985 }; 983 };
986 984
987 } // namespace gpu_blink 985 } // namespace gpu_blink
988 986
989 #endif // GPU_BLINK_WEBGRAPHICSCONTEXT3D_IMPL_H_ 987 #endif // GPU_BLINK_WEBGRAPHICSCONTEXT3D_IMPL_H_
OLDNEW
« no previous file with comments | « gpu/GLES2/gl2extchromium.h ('k') | gpu/blink/webgraphicscontext3d_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698