| Index: Source/core/html/canvas/EXTFragDepth.cpp
|
| diff --git a/Source/core/html/canvas/EXTFragDepth.cpp b/Source/core/html/canvas/EXTFragDepth.cpp
|
| index 16c7622450388274ea88df2c15e74fbd9731da95..002deb3df747645fd2495fcf3d10972867aee178 100644
|
| --- a/Source/core/html/canvas/EXTFragDepth.cpp
|
| +++ b/Source/core/html/canvas/EXTFragDepth.cpp
|
| @@ -29,7 +29,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -EXTFragDepth::EXTFragDepth(WebGLRenderingContext* context)
|
| +EXTFragDepth::EXTFragDepth(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -40,17 +40,17 @@ EXTFragDepth::~EXTFragDepth()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName EXTFragDepth::name() const
|
| +WebGLExtensionName EXTFragDepth::name() const
|
| {
|
| return EXTFragDepthName;
|
| }
|
|
|
| -PassRefPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContext* context)
|
| +PassRefPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new EXTFragDepth(context));
|
| }
|
|
|
| -bool EXTFragDepth::supported(WebGLRenderingContext* context)
|
| +bool EXTFragDepth::supported(WebGLRenderingContextBase* context)
|
| {
|
| return context->extensionsUtil()->supportsExtension("GL_EXT_frag_depth");
|
| }
|
|
|