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

Side by Side Diff: content/common/gpu/gpu_messages.h

Issue 9699125: Chromium implementation of discardBackbuffer WebGraphicsContext3D extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renaming extension for now, so its not mistaken for the standard one Created 8 years, 9 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 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include <vector> 8 #include <vector>
9 #include <string> 9 #include <string>
10 10
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 // delayed. 438 // delayed.
439 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_Echo, 439 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_Echo,
440 IPC::Message /* reply */) 440 IPC::Message /* reply */)
441 441
442 // Response to a GpuChannelMsg_Echo message. 442 // Response to a GpuChannelMsg_Echo message.
443 IPC_MESSAGE_ROUTED0(GpuCommandBufferMsg_EchoAck) 443 IPC_MESSAGE_ROUTED0(GpuCommandBufferMsg_EchoAck)
444 444
445 // Send to stub on surface visibility change. 445 // Send to stub on surface visibility change.
446 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetSurfaceVisible, bool /* visible */) 446 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetSurfaceVisible, bool /* visible */)
447 447
448 IPC_MESSAGE_ROUTED0(GpuCommandBufferMsg_DiscardBackbuffer)
449 IPC_MESSAGE_ROUTED0(GpuCommandBufferMsg_EnsureBackbuffer)
450
448 // Sent to proxy when the gpu memory manager changes its memory allocation. 451 // Sent to proxy when the gpu memory manager changes its memory allocation.
449 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetMemoryAllocation, 452 IPC_MESSAGE_ROUTED1(GpuCommandBufferMsg_SetMemoryAllocation,
450 GpuMemoryAllocationForRenderer /* allocation */) 453 GpuMemoryAllocationForRenderer /* allocation */)
451 454
452 //------------------------------------------------------------------------------ 455 //------------------------------------------------------------------------------
453 // Accelerated Video Decoder Messages 456 // Accelerated Video Decoder Messages
454 // These messages are sent from Renderer process to GPU process. 457 // These messages are sent from Renderer process to GPU process.
455 458
456 // Send input buffer for decoding. 459 // Send input buffer for decoding.
457 IPC_MESSAGE_ROUTED3(AcceleratedVideoDecoderMsg_Decode, 460 IPC_MESSAGE_ROUTED3(AcceleratedVideoDecoderMsg_Decode,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 510
508 // Confirm decoder has been flushed. 511 // Confirm decoder has been flushed.
509 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) 512 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone)
510 513
511 // Confirm decoder has been reset. 514 // Confirm decoder has been reset.
512 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) 515 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone)
513 516
514 // Video decoder has encountered an error. 517 // Video decoder has encountered an error.
515 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, 518 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification,
516 uint32) /* Error ID */ 519 uint32) /* Error ID */
OLDNEW
« no previous file with comments | « content/common/gpu/gpu_command_buffer_stub.cc ('k') | content/common/gpu/texture_image_transport_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698