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

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

Issue 22824009: Remove StreamTextureManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/context_group.h
diff --git a/gpu/command_buffer/service/context_group.h b/gpu/command_buffer/service/context_group.h
index 13d031a707eb5836ea5efd79f9d5f3532b8953e6..a8edaf06884bdf3876847a0b5211d7c5d7a389d9 100644
--- a/gpu/command_buffer/service/context_group.h
+++ b/gpu/command_buffer/service/context_group.h
@@ -21,7 +21,6 @@
namespace gpu {
class IdAllocatorInterface;
-class StreamTextureManager;
class TransferBufferManagerInterface;
namespace gles2 {
@@ -47,7 +46,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
MailboxManager* mailbox_manager,
ImageManager* image_manager,
MemoryTracker* memory_tracker,
- StreamTextureManager* stream_texture_manager,
bool bind_generates_resource);
// This should only be called by GLES2Decoder. This must be paired with a
@@ -73,10 +71,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
return memory_tracker_.get();
}
- StreamTextureManager* stream_texture_manager() const {
- return stream_texture_manager_;
- }
-
bool bind_generates_resource() {
return bind_generates_resource_;
}
@@ -185,7 +179,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
scoped_refptr<MailboxManager> mailbox_manager_;
scoped_refptr<ImageManager> image_manager_;
scoped_refptr<MemoryTracker> memory_tracker_;
- StreamTextureManager* stream_texture_manager_;
scoped_ptr<TransferBufferManagerInterface> transfer_buffer_manager_;
bool enforce_gl_minimums_;

Powered by Google App Engine
This is Rietveld 408576698