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

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

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references 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
« 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 26f1e3a1326184d1faac79727d6712efe0393408..13e448be0b06bf41fe248345a6f0dae8a5561d1f 100644
--- a/gpu/command_buffer/service/context_group.h
+++ b/gpu/command_buffer/service/context_group.h
@@ -27,7 +27,6 @@ namespace gpu {
struct GpuPreferences;
class TransferBufferManager;
-class ValueStateMap;
namespace gles2 {
@@ -42,8 +41,6 @@ class ProgramManager;
class SamplerManager;
class ShaderManager;
class TextureManager;
-class SubscriptionRefSet;
-class ValuebufferManager;
class MemoryTracker;
struct DisallowedFeatures;
@@ -59,8 +56,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
const scoped_refptr<FramebufferCompletenessCache>&
framebuffer_completeness_cache,
const scoped_refptr<FeatureInfo>& feature_info,
- const scoped_refptr<SubscriptionRefSet>& subscription_ref_set,
- const scoped_refptr<ValueStateMap>& pending_valuebuffer_state,
bool bind_generates_resource);
// This should only be called by GLES2Decoder. This must be paired with a
@@ -154,14 +149,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
return renderbuffer_manager_.get();
}
- ValuebufferManager* valuebuffer_manager() const {
- return valuebuffer_manager_.get();
- }
-
- ValueStateMap* pending_valuebuffer_state() const {
- return pending_valuebuffer_state_.get();
- }
-
TextureManager* texture_manager() const {
return texture_manager_.get();
}
@@ -258,8 +245,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
scoped_refptr<ShaderTranslatorCache> shader_translator_cache_;
scoped_refptr<FramebufferCompletenessCache> framebuffer_completeness_cache_;
scoped_refptr<TransferBufferManager> transfer_buffer_manager_;
- scoped_refptr<SubscriptionRefSet> subscription_ref_set_;
- scoped_refptr<ValueStateMap> pending_valuebuffer_state_;
bool enforce_gl_minimums_;
bool bind_generates_resource_;
@@ -298,8 +283,6 @@ class GPU_EXPORT ContextGroup : public base::RefCounted<ContextGroup> {
std::unique_ptr<SamplerManager> sampler_manager_;
- std::unique_ptr<ValuebufferManager> valuebuffer_manager_;
-
scoped_refptr<FeatureInfo> feature_info_;
std::vector<base::WeakPtr<gles2::GLES2Decoder> > decoders_;
« 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