diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-15 20:19:06 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-15 20:19:06 +0000 |
commit | c4514c3c5719c148aacfafb85edabc6cd51ee501 (patch) | |
tree | cfa40690d02cddfc2e1b8b7b6e0bf8763c33fe78 /gpu/pgl | |
parent | 0d2e6a6da72279fe8f66eeb3b4442b6e5f4eb67c (diff) | |
download | chromium_src-c4514c3c5719c148aacfafb85edabc6cd51ee501.zip chromium_src-c4514c3c5719c148aacfafb85edabc6cd51ee501.tar.gz chromium_src-c4514c3c5719c148aacfafb85edabc6cd51ee501.tar.bz2 |
linux: enable pepper_test_plugin
This includes a way to build it with full support on x64 (and arm ?), by specifying linux_fpic=1 in GYP_DEFINES and re-running gyp.
Review URL: http://codereview.chromium.org/551041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36399 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/pgl')
-rw-r--r-- | gpu/pgl/pgl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/pgl/pgl.cc b/gpu/pgl/pgl.cc index 320dfff..c403265 100644 --- a/gpu/pgl/pgl.cc +++ b/gpu/pgl/pgl.cc @@ -154,7 +154,7 @@ PGLBoolean pglDestroyContext(PGLContext pgl_context) { if (!pgl_context) return false; - delete pgl_context; + delete static_cast<PGLContextImpl*>(pgl_context); return true; } |