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

Unified Diff: Source/core/html/canvas/WebGLTexture.h

Issue 24096029: Moved the majority of WebGL functionality into WebGLRenderingContextBase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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: Source/core/html/canvas/WebGLTexture.h
diff --git a/Source/core/html/canvas/WebGLTexture.h b/Source/core/html/canvas/WebGLTexture.h
index 67f1fdce86cdbda34f90e347fc0e359dedc96198..c12523df2c92dd27efce903da82a654e6549b76f 100644
--- a/Source/core/html/canvas/WebGLTexture.h
+++ b/Source/core/html/canvas/WebGLTexture.h
@@ -42,7 +42,7 @@ public:
};
virtual ~WebGLTexture();
- static PassRefPtr<WebGLTexture> create(WebGLRenderingContext*);
+ static PassRefPtr<WebGLTexture> create(WebGLRenderingContextBase*);
void setTarget(GC3Denum target, GC3Dint maxLevel);
void setParameteri(GC3Denum pname, GC3Dint param);
@@ -76,7 +76,7 @@ public:
static GC3Dint computeLevelCount(GC3Dsizei width, GC3Dsizei height);
protected:
- WebGLTexture(WebGLRenderingContext*);
+ WebGLTexture(WebGLRenderingContextBase*);
virtual void deleteObjectImpl(GraphicsContext3D*, Platform3DObject);

Powered by Google App Engine
This is Rietveld 408576698