| Index: Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| diff --git a/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp b/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| index db35168d6268f3940a65a59137299fb2ff83f2bd..d1586ff22d6b3269c58f177ec9bc1593e3110912 100644
|
| --- a/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| +++ b/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| @@ -27,11 +27,11 @@
|
|
|
| #include "core/html/canvas/WebGLCompressedTexturePVRTC.h"
|
|
|
| -#include "core/html/canvas/WebGLRenderingContext.h"
|
| +#include "core/html/canvas/WebGLRenderingContextBase.h"
|
|
|
| namespace WebCore {
|
|
|
| -WebGLCompressedTexturePVRTC::WebGLCompressedTexturePVRTC(WebGLRenderingContext* context)
|
| +WebGLCompressedTexturePVRTC::WebGLCompressedTexturePVRTC(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -45,17 +45,17 @@ WebGLCompressedTexturePVRTC::~WebGLCompressedTexturePVRTC()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName WebGLCompressedTexturePVRTC::name() const
|
| +WebGLExtensionName WebGLCompressedTexturePVRTC::name() const
|
| {
|
| return WebGLCompressedTexturePVRTCName;
|
| }
|
|
|
| -PassRefPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContext* context)
|
| +PassRefPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new WebGLCompressedTexturePVRTC(context));
|
| }
|
|
|
| -bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContext* context)
|
| +bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContextBase* context)
|
| {
|
| return context->extensionsUtil()->supportsExtension("GL_IMG_texture_compression_pvrtc");
|
| }
|
|
|