| Index: Source/core/html/canvas/WebGLDepthTexture.cpp
|
| diff --git a/Source/core/html/canvas/WebGLDepthTexture.cpp b/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| index 6a450c2eb426d7edf548cc0d519fa92aa4f8289e..1e1fb60e9342aed0f42344da72eeda3dc3993f97 100644
|
| --- a/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| +++ b/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| @@ -31,7 +31,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -WebGLDepthTexture::WebGLDepthTexture(WebGLRenderingContext* context)
|
| +WebGLDepthTexture::WebGLDepthTexture(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -42,17 +42,17 @@ WebGLDepthTexture::~WebGLDepthTexture()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName WebGLDepthTexture::getName() const
|
| +WebGLExtensionName WebGLDepthTexture::getName() 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)
|
| {
|
| Extensions3D* extensions = context->graphicsContext3D()->getExtensions();
|
| // Emulating the UNSIGNED_INT_24_8_WEBGL texture internal format in terms
|
|
|