OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
gunsch
2014/12/20 22:41:34
actually, probably leave out VideoPlaneProxy for n
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROMECAST_RENDERER_MEDIA_VIDEO_PLANE_PROXY_H_ | |
6 #define CHROMECAST_RENDERER_MEDIA_VIDEO_PLANE_PROXY_H_ | |
7 | |
8 namespace gfx { | |
9 class QuadF; | |
10 } | |
11 | |
12 namespace chromecast { | |
13 namespace cma { | |
gunsch
2014/12/20 22:41:35
chromecast::media
erickung1
2014/12/21 11:10:48
Done.
| |
14 | |
15 // Update the geometry of the video surface referred by |surface_id|. | |
16 // Function must run on the renderer IO thread. | |
17 void UpdateVideoSurface(int surface_id, const gfx::QuadF& quad); | |
18 | |
19 } // namespace cma | |
20 } // namespace chromecast | |
21 | |
22 #endif // CHROMECAST_RENDERER_MEDIA_VIDEO_PLANE_PROXY_H_ | |
23 | |
OLD | NEW |