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

Side by Side Diff: content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h

Issue 17504006: GPU process clients can perform a "shallow" finish. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/common/gpu/client/webgraphicscontext3d_command_buffer_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 CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ 5 #ifndef CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_
6 #define CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ 6 #define CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 551
552 virtual void copyTextureCHROMIUM(WGC3Denum target, WebGLId source_id, 552 virtual void copyTextureCHROMIUM(WGC3Denum target, WebGLId source_id,
553 WebGLId dest_id, WGC3Dint level, 553 WebGLId dest_id, WGC3Dint level,
554 WGC3Denum internal_format, 554 WGC3Denum internal_format,
555 WGC3Denum dest_type); 555 WGC3Denum dest_type);
556 556
557 virtual void bindUniformLocationCHROMIUM(WebGLId program, WGC3Dint location, 557 virtual void bindUniformLocationCHROMIUM(WebGLId program, WGC3Dint location,
558 const WGC3Dchar* uniform); 558 const WGC3Dchar* uniform);
559 559
560 virtual void shallowFlushCHROMIUM(); 560 virtual void shallowFlushCHROMIUM();
561 virtual void shallowFinishCHROMIUM();
561 562
562 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox); 563 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox);
563 virtual void produceTextureCHROMIUM(WGC3Denum target, 564 virtual void produceTextureCHROMIUM(WGC3Denum target,
564 const WGC3Dbyte* mailbox); 565 const WGC3Dbyte* mailbox);
565 virtual void consumeTextureCHROMIUM(WGC3Denum target, 566 virtual void consumeTextureCHROMIUM(WGC3Denum target,
566 const WGC3Dbyte* mailbox); 567 const WGC3Dbyte* mailbox);
567 568
568 virtual void insertEventMarkerEXT(const WGC3Dchar* marker); 569 virtual void insertEventMarkerEXT(const WGC3Dchar* marker);
569 virtual void pushGroupMarkerEXT(const WGC3Dchar* marker); 570 virtual void pushGroupMarkerEXT(const WGC3Dchar* marker);
570 virtual void popGroupMarkerEXT(); 571 virtual void popGroupMarkerEXT();
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 bool use_echo_for_swap_ack_; 752 bool use_echo_for_swap_ack_;
752 size_t command_buffer_size_; 753 size_t command_buffer_size_;
753 size_t start_transfer_buffer_size_; 754 size_t start_transfer_buffer_size_;
754 size_t min_transfer_buffer_size_; 755 size_t min_transfer_buffer_size_;
755 size_t max_transfer_buffer_size_; 756 size_t max_transfer_buffer_size_;
756 }; 757 };
757 758
758 } // namespace content 759 } // namespace content
759 760
760 #endif // CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_ 761 #endif // CONTENT_COMMON_GPU_CLIENT_WEBGRAPHICSCONTEXT3D_COMMAND_BUFFER_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698