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

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

Issue 1325433003: command_buffer: Add support for creating non-WebGL ES 3 contexts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missing hunk Created 5 years, 3 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/framebuffer_manager.h
diff --git a/gpu/command_buffer/service/framebuffer_manager.h b/gpu/command_buffer/service/framebuffer_manager.h
index d61edfb2126eabfb795b9c2fa2506b062a644fdf..7216654e86c26accb91309133e49077a279598ff 100644
--- a/gpu/command_buffer/service/framebuffer_manager.h
+++ b/gpu/command_buffer/service/framebuffer_manager.h
@@ -255,7 +255,7 @@ class GPU_EXPORT FramebufferManager {
FramebufferManager(uint32 max_draw_buffers,
uint32 max_color_attachments,
- ContextGroup::ContextType context_type,
+ ContextType context_type,
const scoped_refptr<FramebufferCompletenessCache>&
framebuffer_combo_complete_cache);
~FramebufferManager();
@@ -302,9 +302,7 @@ class GPU_EXPORT FramebufferManager {
texture_detach_observers_.end());
}
- ContextGroup::ContextType context_type() const {
- return context_type_;
- }
+ ContextType context_type() const { return context_type_; }
private:
friend class Framebuffer;
@@ -336,7 +334,7 @@ class GPU_EXPORT FramebufferManager {
uint32 max_draw_buffers_;
uint32 max_color_attachments_;
- ContextGroup::ContextType context_type_;
+ ContextType context_type_;
typedef std::vector<TextureDetachObserver*> TextureDetachObserverVector;
TextureDetachObserverVector texture_detach_observers_;
« no previous file with comments | « gpu/command_buffer/service/context_group_unittest.cc ('k') | gpu/command_buffer/service/framebuffer_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698