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

Side by Side Diff: content/browser/renderer_host/accelerated_surface_container_manager_mac.h

Issue 9194005: gpu: reference target surfaces through a globally unique surface id. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix more tests Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_MANAGER_MAC_ H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_MANAGER_MAC_ H_
6 #define CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_MANAGER_MAC_ H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_MANAGER_MAC_ H_
7 #pragma once 7 #pragma once
8 8
9 #include <OpenGL/OpenGL.h> 9 #include <OpenGL/OpenGL.h>
10 #include <map> 10 #include <map>
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 // Draws the plugin container associated with the given id into the given 76 // Draws the plugin container associated with the given id into the given
77 // OpenGL context, which must already be current. 77 // OpenGL context, which must already be current.
78 void Draw(CGLContextObj context, gfx::PluginWindowHandle id); 78 void Draw(CGLContextObj context, gfx::PluginWindowHandle id);
79 79
80 // Causes the next Draw call on each container to trigger a texture upload. 80 // Causes the next Draw call on each container to trigger a texture upload.
81 // Should be called any time the drawing context has changed. 81 // Should be called any time the drawing context has changed.
82 void ForceTextureReload(); 82 void ForceTextureReload();
83 83
84 // Notifies a surface that it has been painted to. 84 // Notifies a surface that it has been painted to.
85 void SetSurfaceWasPaintedTo(gfx::PluginWindowHandle id, uint64 surface_id);
86 void SetSurfaceWasPaintedTo(gfx::PluginWindowHandle id, 85 void SetSurfaceWasPaintedTo(gfx::PluginWindowHandle id,
87 uint64 surface_id, 86 uint64 surface_handle);
87 void SetSurfaceWasPaintedTo(gfx::PluginWindowHandle id,
88 uint64 surface_handle,
88 const gfx::Rect& update_rect); 89 const gfx::Rect& update_rect);
89 90
90 // Notifies the root container that its surface is invalid. 91 // Notifies the root container that its surface is invalid.
91 void SetRootSurfaceInvalid(); 92 void SetRootSurfaceInvalid();
92 93
93 // Returns if a given surface should be shown. 94 // Returns if a given surface should be shown.
94 bool SurfaceShouldBeVisible(gfx::PluginWindowHandle id) const; 95 bool SurfaceShouldBeVisible(gfx::PluginWindowHandle id) const;
95 private: 96 private:
96 uint32 current_id_; 97 uint32 current_id_;
97 98
(...skipping 25 matching lines...) Expand all
123 124
124 // Both |plugin_window_to_container_map_| and the 125 // Both |plugin_window_to_container_map_| and the
125 // AcceleratedSurfaceContainerMac in it are not threadsafe, but accessed from 126 // AcceleratedSurfaceContainerMac in it are not threadsafe, but accessed from
126 // multiple threads. All these accesses are guarded by this lock. 127 // multiple threads. All these accesses are guarded by this lock.
127 mutable base::Lock lock_; 128 mutable base::Lock lock_;
128 129
129 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurfaceContainerManagerMac); 130 DISALLOW_COPY_AND_ASSIGN(AcceleratedSurfaceContainerManagerMac);
130 }; 131 };
131 132
132 #endif // CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_MANAGER_M AC_H_ 133 #endif // CONTENT_BROWSER_RENDERER_HOST_ACCELERATED_SURFACE_CONTAINER_MANAGER_M AC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698