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

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

Issue 331723003: gpu: Remove Create/DeleteImage IPC by adding an X11_PIXMAP_BUFFER GpuMemoryBuffer type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « gpu/command_buffer/service/BUILD.gn ('k') | gpu/command_buffer/service/context_group.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/context_group.h
diff --git a/gpu/command_buffer/service/context_group.h b/gpu/command_buffer/service/context_group.h
index 924527f87de9ebc52e8a6b6a4fdf0ccc8b3f90db..179f298dbb843001bac5d95868149963fc213f83 100644
--- a/gpu/command_buffer/service/context_group.h
+++ b/gpu/command_buffer/service/context_group.h
@@ -30,7 +30,6 @@ class ProgramCache;
class BufferManager;
class GLES2Decoder;
class FramebufferManager;
-class ImageManager;
class MailboxManager;
class RenderbufferManager;
class ProgramManager;
@@ -45,7 +44,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
public:
ContextGroup(
MailboxManager* mailbox_manager,
- ImageManager* image_manager,
MemoryTracker* memory_tracker,
ShaderTranslatorCache* shader_translator_cache,
FeatureInfo* feature_info,
@@ -65,10 +63,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
return mailbox_manager_.get();
}
- ImageManager* image_manager() const {
- return image_manager_.get();
- }
-
MemoryTracker* memory_tracker() const {
return memory_tracker_.get();
}
@@ -183,7 +177,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
bool HaveContexts();
scoped_refptr<MailboxManager> mailbox_manager_;
- scoped_refptr<ImageManager> image_manager_;
scoped_refptr<MemoryTracker> memory_tracker_;
scoped_refptr<ShaderTranslatorCache> shader_translator_cache_;
scoped_ptr<TransferBufferManagerInterface> transfer_buffer_manager_;
« no previous file with comments | « gpu/command_buffer/service/BUILD.gn ('k') | gpu/command_buffer/service/context_group.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698