| Index: Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| diff --git a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| index 9df4b36a06d2003a81d35985b2388517c5dc218e..eaff9561f0dda88e2d88056907d45bc619505be1 100644
|
| --- a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| +++ b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| @@ -31,7 +31,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -WebGLCompressedTextureATC::WebGLCompressedTextureATC(WebGLRenderingContext* context)
|
| +WebGLCompressedTextureATC::WebGLCompressedTextureATC(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -44,17 +44,17 @@ WebGLCompressedTextureATC::~WebGLCompressedTextureATC()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName WebGLCompressedTextureATC::getName() const
|
| +WebGLExtensionName WebGLCompressedTextureATC::getName() const
|
| {
|
| return WebGLCompressedTextureATCName;
|
| }
|
|
|
| -PassRefPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContext* context)
|
| +PassRefPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new WebGLCompressedTextureATC(context));
|
| }
|
|
|
| -bool WebGLCompressedTextureATC::supported(WebGLRenderingContext* context)
|
| +bool WebGLCompressedTextureATC::supported(WebGLRenderingContextBase* context)
|
| {
|
| Extensions3D* extensions = context->graphicsContext3D()->getExtensions();
|
| return extensions->supports("GL_AMD_compressed_ATC_texture");
|
|
|