| Index: Source/core/html/canvas/WebGLDepthTexture.cpp
|
| diff --git a/Source/core/html/canvas/WebGLDepthTexture.cpp b/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| index f3c5c65d8b07d7345ae2c4a994ba884f0f8c6b66..eb2e41d905b797b6c18f77668cbd954f6c1a40e7 100644
|
| --- a/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| +++ b/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| @@ -29,7 +29,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -WebGLDepthTexture::WebGLDepthTexture(WebGLRenderingContext* context)
|
| +WebGLDepthTexture::WebGLDepthTexture(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -40,17 +40,17 @@ WebGLDepthTexture::~WebGLDepthTexture()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName WebGLDepthTexture::name() const
|
| +WebGLExtensionName WebGLDepthTexture::name() const
|
| {
|
| return WebGLDepthTextureName;
|
| }
|
|
|
| -PassRefPtr<WebGLDepthTexture> WebGLDepthTexture::create(WebGLRenderingContext* context)
|
| +PassRefPtr<WebGLDepthTexture> WebGLDepthTexture::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new WebGLDepthTexture(context));
|
| }
|
|
|
| -bool WebGLDepthTexture::supported(WebGLRenderingContext* context)
|
| +bool WebGLDepthTexture::supported(WebGLRenderingContextBase* context)
|
| {
|
| Extensions3DUtil* extensionsUtil = context->extensionsUtil();
|
| // Emulating the UNSIGNED_INT_24_8_WEBGL texture internal format in terms
|
|
|