| Index: Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| diff --git a/Source/core/html/canvas/OESTextureFloatLinear.cpp b/Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| index 04d59e22c240e8e585b393aa5411369665cecf78..1bf416d8feba083dd65c1402210abaf1e727b295 100644
|
| --- a/Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| +++ b/Source/core/html/canvas/OESTextureFloatLinear.cpp
|
| @@ -47,9 +47,9 @@ WebGLExtension::ExtensionName OESTextureFloatLinear::getName() const
|
| return OESTextureFloatLinearName;
|
| }
|
|
|
| -PassOwnPtr<OESTextureFloatLinear> OESTextureFloatLinear::create(WebGLRenderingContext* context)
|
| +PassRefPtr<OESTextureFloatLinear> OESTextureFloatLinear::create(WebGLRenderingContext* context)
|
| {
|
| - return adoptPtr(new OESTextureFloatLinear(context));
|
| + return adoptRef(new OESTextureFloatLinear(context));
|
| }
|
|
|
| bool OESTextureFloatLinear::supported(WebGLRenderingContext* context)
|
|
|