Chromium Code Reviews| Index: ui/compositor/compositor.h |
| diff --git a/ui/compositor/compositor.h b/ui/compositor/compositor.h |
| index cf115b0238f0646ec43532acbe032ad775f89e8c..0e34ea1c6b6e390965d0c832a063120fdf84b520 100644 |
| --- a/ui/compositor/compositor.h |
| +++ b/ui/compositor/compositor.h |
| @@ -94,8 +94,11 @@ class COMPOSITOR_EXPORT ContextFactory { |
| // operations. |
| virtual bool DoesCreateTestContexts() = 0; |
| - // Returns the OpenGL target to use for image textures. |
| - virtual uint32 GetImageTextureTarget() = 0; |
| + // Returns the OpenGL target to use for mapable image textures. |
| + virtual uint32 GetMapImageTextureTarget() = 0; |
| + |
| + // Returns the OpenGL target to use for persistent-mapable image textures. |
| + virtual uint32 GetPersistentMapImageTextureTarget() = 0; |
|
reveman
2015/05/20 14:26:08
Same here. Having a different function for each co
|
| // Gets the shared bitmap manager for software mode. |
| virtual cc::SharedBitmapManager* GetSharedBitmapManager() = 0; |