| Index: Source/core/html/canvas/OESStandardDerivatives.cpp
|
| diff --git a/Source/core/html/canvas/OESStandardDerivatives.cpp b/Source/core/html/canvas/OESStandardDerivatives.cpp
|
| index 442640c54d0c433ef5b885c71f364a10d411bde9..875ebfcf7f2b6415ed6c117f2b086c4c44e83969 100644
|
| --- a/Source/core/html/canvas/OESStandardDerivatives.cpp
|
| +++ b/Source/core/html/canvas/OESStandardDerivatives.cpp
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContext* context)
|
| +OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -41,17 +41,17 @@ OESStandardDerivatives::~OESStandardDerivatives()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName OESStandardDerivatives::getName() const
|
| +WebGLExtensionName OESStandardDerivatives::getName() const
|
| {
|
| return OESStandardDerivativesName;
|
| }
|
|
|
| -PassRefPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContext* context)
|
| +PassRefPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new OESStandardDerivatives(context));
|
| }
|
|
|
| -bool OESStandardDerivatives::supported(WebGLRenderingContext* context)
|
| +bool OESStandardDerivatives::supported(WebGLRenderingContextBase* context)
|
| {
|
| Extensions3D* extensions = context->graphicsContext3D()->getExtensions();
|
| return extensions->supports("GL_OES_standard_derivatives");
|
|
|