| Index: Source/core/html/canvas/OESTextureFloat.cpp
|
| diff --git a/Source/core/html/canvas/OESTextureFloat.cpp b/Source/core/html/canvas/OESTextureFloat.cpp
|
| index d2f5a22ed2af7e6861584dde584d53a7e85e8627..3d19049cabe2e72b5c1c0dbae206748cb37a2515 100644
|
| --- a/Source/core/html/canvas/OESTextureFloat.cpp
|
| +++ b/Source/core/html/canvas/OESTextureFloat.cpp
|
| @@ -46,9 +46,9 @@ WebGLExtension::ExtensionName OESTextureFloat::getName() const
|
| return OESTextureFloatName;
|
| }
|
|
|
| -PassOwnPtr<OESTextureFloat> OESTextureFloat::create(WebGLRenderingContext* context)
|
| +PassRefPtr<OESTextureFloat> OESTextureFloat::create(WebGLRenderingContext* context)
|
| {
|
| - return adoptPtr(new OESTextureFloat(context));
|
| + return adoptRef(new OESTextureFloat(context));
|
| }
|
|
|
| bool OESTextureFloat::supported(WebGLRenderingContext* context)
|
|
|