summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/WebGLLayer.cpp
diff options
context:
space:
mode:
authorPierre-Antoine LaFayette <plafayet@codeaurora.org>2012-10-10 13:43:45 -0400
committerSteve Kondik <shade@chemlab.org>2013-01-20 18:38:31 -0800
commitc018655c37a1da5d7e1f9dc94d0467130cf630f1 (patch)
tree1fdea05f45d91439905ed7904b194e4747342364 /Source/WebCore/platform/graphics/android/WebGLLayer.cpp
parent77ab7f788fa2de43390a0ddb447c94a191284e88 (diff)
downloadexternal_webkit-c018655c37a1da5d7e1f9dc94d0467130cf630f1.zip
external_webkit-c018655c37a1da5d7e1f9dc94d0467130cf630f1.tar.gz
external_webkit-c018655c37a1da5d7e1f9dc94d0467130cf630f1.tar.bz2
Fix for memory leak in WebGL
CRs-fixed: 407009 (cherry-picked from commit 796a2a4cc637a3b04ee845e595b081e826207924) Change-Id: I584fe07dd5887ed52b74bc84044d510f8a2e2ba8
Diffstat (limited to 'Source/WebCore/platform/graphics/android/WebGLLayer.cpp')
-rw-r--r--Source/WebCore/platform/graphics/android/WebGLLayer.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/WebCore/platform/graphics/android/WebGLLayer.cpp b/Source/WebCore/platform/graphics/android/WebGLLayer.cpp
index af1f31d..9feb2e1 100644
--- a/Source/WebCore/platform/graphics/android/WebGLLayer.cpp
+++ b/Source/WebCore/platform/graphics/android/WebGLLayer.cpp
@@ -37,23 +37,20 @@
namespace WebCore {
-WebGLLayer::WebGLLayer(GraphicsContext3DProxy* proxy)
+WebGLLayer::WebGLLayer(PassRefPtr<GraphicsContext3DProxy> proxy)
: LayerAndroid((RenderLayer*)0)
, m_proxy(proxy)
{
- m_proxy->incr();
}
WebGLLayer::WebGLLayer(const WebGLLayer& layer)
: LayerAndroid(layer)
, m_proxy(layer.m_proxy)
{
- m_proxy->incr();
}
WebGLLayer::~WebGLLayer()
{
- m_proxy->decr();
}
bool WebGLLayer::drawGL(bool layerTilesDisabled)