| Index: Source/modules/webgl/WebGLCompressedTexturePVRTC.cpp
|
| diff --git a/Source/modules/webgl/WebGLCompressedTexturePVRTC.cpp b/Source/modules/webgl/WebGLCompressedTexturePVRTC.cpp
|
| index b9b02a84bc2bfc5fd8e5004f302a39d0fd0c3c3a..8e3b9954f69fd68b150a6d25a9b18e8520b0d059 100644
|
| --- a/Source/modules/webgl/WebGLCompressedTexturePVRTC.cpp
|
| +++ b/Source/modules/webgl/WebGLCompressedTexturePVRTC.cpp
|
| @@ -49,9 +49,9 @@
|
| return WebGLCompressedTexturePVRTCName;
|
| }
|
|
|
| -WebGLCompressedTexturePVRTC* WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context)
|
| {
|
| - return new WebGLCompressedTexturePVRTC(context);
|
| + return adoptRefWillBeNoop(new WebGLCompressedTexturePVRTC(context));
|
| }
|
|
|
| bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContextBase* context)
|
|
|