| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ | 5 #ifndef UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ |
| 6 #define UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ | 6 #define UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "ui/android/ui_android_export.h" | 10 #include "ui/android/ui_android_export.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 class ContextProvider; | 13 class ContextProvider; |
| 14 class GpuMemoryBufferManager; | 14 class GpuMemoryBufferManager; |
| 15 class VulkanContextProvider; | 15 class VulkanContextProvider; |
| 16 class SharedBitmapManager; | 16 class SharedBitmapManager; |
| 17 class SurfaceManager; | 17 class SurfaceManager; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace gpu { | 20 namespace gpu { |
| 21 namespace gles2 { | 21 namespace gles2 { |
| 22 struct ContextCreationAttribHelper; | 22 struct ContextCreationAttribHelper; |
| 23 } // namespace gles | 23 } // namespace gles |
| 24 | 24 |
| 25 struct SharedMemoryLimits; | 25 struct SharedMemoryLimits; |
| 26 class GpuChannelHost; |
| 26 class GpuMemoryBufferManager; | 27 class GpuMemoryBufferManager; |
| 27 } // namespace gpu | 28 } // namespace gpu |
| 28 | 29 |
| 29 namespace ui { | 30 namespace ui { |
| 30 | 31 |
| 31 // This class is not thread-safe and should only be accessed from the UI thread. | 32 // This class is not thread-safe and should only be accessed from the UI thread. |
| 32 class UI_ANDROID_EXPORT ContextProviderFactory { | 33 class UI_ANDROID_EXPORT ContextProviderFactory { |
| 33 public: | 34 public: |
| 34 enum class ContextCreationResult { | 35 enum class GpuChannelHostResult { |
| 35 FAILURE_GPU_PROCESS_INITIALIZATION_FAILED, | 36 FAILURE_GPU_PROCESS_INITIALIZATION_FAILED, |
| 36 | 37 |
| 37 // Used when the factory is shutting down. No more requests should be made | 38 // Used when the factory is shutting down. No more requests should be made |
| 38 // to the factory after this response is dispatched. | 39 // to the factory after this response is dispatched. |
| 39 FAILURE_FACTORY_SHUTDOWN, | 40 FAILURE_FACTORY_SHUTDOWN, |
| 40 | 41 |
| 41 // The GpuSurfaceHandle for the request was lost before the context could be | |
| 42 // created. This is used for on-screen context requests only. | |
| 43 FAILURE_GPU_SURFACE_HANDLE_LOST, | |
| 44 | |
| 45 // Set if the Context creation was successful. | 42 // Set if the Context creation was successful. |
| 46 SUCCESS, | 43 SUCCESS, |
| 47 }; | 44 }; |
| 48 | 45 |
| 49 using ContextProviderCallback = | 46 using GpuChannelHostCallback = |
| 50 base::Callback<void(const scoped_refptr<cc::ContextProvider>&, | 47 base::Callback<void(const scoped_refptr<gpu::GpuChannelHost>&, |
| 51 ContextCreationResult)>; | 48 GpuChannelHostResult)>; |
| 52 | 49 |
| 53 enum class ContextType { | 50 enum class ContextType { |
| 54 BLIMP_RENDER_COMPOSITOR_CONTEXT, | 51 BLIMP_RENDER_COMPOSITOR_CONTEXT, |
| 55 BLIMP_RENDER_WORKER_CONTEXT, | 52 BLIMP_RENDER_WORKER_CONTEXT, |
| 56 }; | 53 }; |
| 57 | 54 |
| 58 static ContextProviderFactory* GetInstance(); | 55 static ContextProviderFactory* GetInstance(); |
| 59 | 56 |
| 60 // This should only be called once, on startup. Ownership remains with the | 57 // This should only be called once, on startup. Ownership remains with the |
| 61 // caller. | 58 // caller. |
| 62 static void SetInstance(ContextProviderFactory* context_provider_factory); | 59 static void SetInstance(ContextProviderFactory* context_provider_factory); |
| 63 | 60 |
| 64 virtual ~ContextProviderFactory(){}; | 61 virtual ~ContextProviderFactory(){}; |
| 65 | 62 |
| 66 virtual scoped_refptr<cc::VulkanContextProvider> | 63 virtual scoped_refptr<cc::VulkanContextProvider> |
| 67 GetSharedVulkanContextProvider() = 0; | 64 GetSharedVulkanContextProvider() = 0; |
| 68 | 65 |
| 66 // The callback may be triggered synchronously if possible. If the creation |
| 67 // fails, a null host is passed with the specified reason. |
| 68 virtual void RequestGpuChannelHost(GpuChannelHostCallback callback) = 0; |
| 69 |
| 69 // Creates an offscreen ContextProvider for the compositor. Any shared | 70 // Creates an offscreen ContextProvider for the compositor. Any shared |
| 70 // contexts passed here *must* have been created using this factory. | 71 // contexts passed here *must* have been created using this factory. |
| 71 // The callback may be triggered synchronously if possible. If the context | 72 virtual scoped_refptr<cc::ContextProvider> CreateOffscreenContextProvider( |
| 72 // creation fails, a null context is passed with the specified reason. | |
| 73 virtual void CreateOffscreenContextProvider( | |
| 74 ContextType context_type, | 73 ContextType context_type, |
| 75 gpu::SharedMemoryLimits shared_memory_limits, | 74 gpu::SharedMemoryLimits shared_memory_limits, |
| 76 gpu::gles2::ContextCreationAttribHelper attributes, | 75 gpu::gles2::ContextCreationAttribHelper attributes, |
| 77 bool support_locking, | 76 bool support_locking, |
| 78 bool automatic_flushes, | 77 bool automatic_flushes, |
| 79 cc::ContextProvider* shared_context_provider, | 78 cc::ContextProvider* shared_context_provider, |
| 80 ContextProviderCallback result_callback) = 0; | 79 gpu::GpuChannelHost* gpu_channel_host) = 0; |
| 81 | 80 |
| 82 virtual cc::SurfaceManager* GetSurfaceManager() = 0; | 81 virtual cc::SurfaceManager* GetSurfaceManager() = 0; |
| 83 | 82 |
| 84 virtual uint32_t AllocateSurfaceClientId() = 0; | 83 virtual uint32_t AllocateSurfaceClientId() = 0; |
| 85 | 84 |
| 86 virtual cc::SharedBitmapManager* GetSharedBitmapManager() = 0; | 85 virtual cc::SharedBitmapManager* GetSharedBitmapManager() = 0; |
| 87 | 86 |
| 88 virtual gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() = 0; | 87 virtual gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() = 0; |
| 89 }; | 88 }; |
| 90 | 89 |
| 91 } // namespace ui | 90 } // namespace ui |
| 92 | 91 |
| 93 #endif // UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ | 92 #endif // UI_ANDROID_CONTEXT_PROVIDER_FACTORY_H_ |
| OLD | NEW |