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

Unified Diff: Source/platform/graphics/gpu/WebGLImageBufferSurface.h

Issue 379253002: Initial implementation of display list backed 2D canvases (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: compile error fix 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
Index: Source/platform/graphics/gpu/WebGLImageBufferSurface.h
diff --git a/Source/platform/graphics/gpu/WebGLImageBufferSurface.h b/Source/platform/graphics/gpu/WebGLImageBufferSurface.h
index a148e907be0e22e6c8da0dd857e4b663595bc431..fca69f3179cbce360b73358313b284aab93eaea0 100644
--- a/Source/platform/graphics/gpu/WebGLImageBufferSurface.h
+++ b/Source/platform/graphics/gpu/WebGLImageBufferSurface.h
@@ -49,7 +49,7 @@ public:
virtual ~WebGLImageBufferSurface();
virtual SkCanvas* canvas() const OVERRIDE { return 0; }
- virtual const SkBitmap& bitmap() const OVERRIDE { return m_bitmap; }
+ virtual const SkBitmap& bitmap() OVERRIDE { return m_bitmap; }
virtual bool isValid() const OVERRIDE { return m_bitmap.pixelRef(); }
virtual bool isAccelerated() const OVERRIDE { return true; }
virtual Platform3DObject getBackingTexture() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698