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