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

Unified Diff: gpu/command_buffer/service/in_process_command_buffer.h

Issue 1871613002: Compute GpuDriverBugWorkarounds only one time in the GPU process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/in_process_command_buffer.h
diff --git a/gpu/command_buffer/service/in_process_command_buffer.h b/gpu/command_buffer/service/in_process_command_buffer.h
index af3956a29b312f72247ea789ff083df5d8bb98b0..70fd869ba286ec90e8a4fe9c42e76bbe8772df4a 100644
--- a/gpu/command_buffer/service/in_process_command_buffer.h
+++ b/gpu/command_buffer/service/in_process_command_buffer.h
@@ -25,6 +25,7 @@
#include "gpu/command_buffer/client/gpu_control.h"
#include "gpu/command_buffer/common/command_buffer.h"
#include "gpu/command_buffer/service/gpu_preferences.h"
+#include "gpu/config/gpu_driver_bug_workarounds.h"
#include "gpu/gpu_export.h"
#include "ui/gfx/gpu_memory_buffer.h"
#include "ui/gfx/native_widget_types.h"
@@ -142,7 +143,9 @@ class GPU_EXPORT InProcessCommandBuffer : public CommandBuffer,
class Service {
public:
Service();
- explicit Service(const gpu::GpuPreferences& gpu_preferences);
+ explicit Service(
+ const gpu::GpuPreferences& gpu_preferences,
+ const gpu::GpuDriverBugWorkarounds& gpu_driver_bug_workarounds);
virtual ~Service();
virtual void AddRef() const = 0;
@@ -162,6 +165,7 @@ class GPU_EXPORT InProcessCommandBuffer : public CommandBuffer,
framebuffer_completeness_cache() = 0;
virtual SyncPointManager* sync_point_manager() = 0;
const GpuPreferences& gpu_preferences();
+ const GpuDriverBugWorkarounds& gpu_driver_bug_workarounds();
scoped_refptr<gfx::GLShareGroup> share_group();
scoped_refptr<gles2::MailboxManager> mailbox_manager();
scoped_refptr<gles2::SubscriptionRefSet> subscription_ref_set();
@@ -170,6 +174,7 @@ class GPU_EXPORT InProcessCommandBuffer : public CommandBuffer,
private:
const GpuPreferences gpu_preferences_;
+ const GpuDriverBugWorkarounds gpu_driver_bug_workarounds_;
scoped_refptr<gfx::GLShareGroup> share_group_;
scoped_refptr<gles2::MailboxManager> mailbox_manager_;
scoped_refptr<gles2::SubscriptionRefSet> subscription_ref_set_;

Powered by Google App Engine
This is Rietveld 408576698