| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 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 UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ |
| 6 #define UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ |
| 7 |
| 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted.h" |
| 10 #include "ui/android/ui_android_export.h" |
| 11 |
| 12 namespace cc { |
| 13 class ContextProvider; |
| 14 class GpuMemoryBufferManager; |
| 15 class VulkanContextProvider; |
| 16 class SharedBitmapManager; |
| 17 class SurfaceManager; |
| 18 } |
| 19 |
| 20 namespace gpu { |
| 21 namespace gles2 { |
| 22 struct ContextCreationAttribHelper; |
| 23 } // namespace gles |
| 24 |
| 25 struct SharedMemoryLimits; |
| 26 class GpuMemoryBufferManager; |
| 27 } // namespace gpu |
| 28 |
| 29 namespace ui { |
| 30 |
| 31 // This class is not thread-safe and should only be accessed from the UI thread. |
| 32 class UI_ANDROID_EXPORT ContextProviderFactory { |
| 33 public: |
| 34 using ContextProviderCallback = |
| 35 base::Callback<void(const scoped_refptr<cc::ContextProvider>&)>; |
| 36 |
| 37 enum class ContextType { |
| 38 BLIMP_RENDER_COMPOSITOR_CONTEXT, |
| 39 BLIMP_RENDER_WORKER_CONTEXT, |
| 40 }; |
| 41 |
| 42 static ContextProviderFactory* GetInstance(); |
| 43 |
| 44 // This should only be called once, on startup. Ownership remains with the |
| 45 // caller. |
| 46 static void SetInstance(ContextProviderFactory* context_provider_factory); |
| 47 |
| 48 virtual ~ContextProviderFactory(){}; |
| 49 |
| 50 virtual scoped_refptr<cc::VulkanContextProvider> |
| 51 GetSharedVulkanContextProvider() = 0; |
| 52 |
| 53 // Creates an offscreen ContextProvider for the compositor. Any shared |
| 54 // contexts passed here *must* have been created using this factory. |
| 55 // The callback may be triggered synchronously if possible, and will always |
| 56 // have the context provider. |
| 57 virtual void CreateOffscreenContextProvider( |
| 58 ContextType context_type, |
| 59 gpu::SharedMemoryLimits shared_memory_limits, |
| 60 gpu::gles2::ContextCreationAttribHelper attributes, |
| 61 bool support_locking, |
| 62 bool automatic_flushes, |
| 63 cc::ContextProvider* shared_context_provider, |
| 64 ContextProviderCallback result_callback) = 0; |
| 65 |
| 66 virtual cc::SurfaceManager* GetSurfaceManager() = 0; |
| 67 |
| 68 virtual uint32_t AllocateSurfaceClientId() = 0; |
| 69 |
| 70 virtual cc::SharedBitmapManager* GetSharedBitmapManager() = 0; |
| 71 |
| 72 virtual gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() = 0; |
| 73 }; |
| 74 |
| 75 } // namespace ui |
| 76 |
| 77 #endif // UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ |
| OLD | NEW |