diff options
author | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 21:02:52 +0000 |
---|---|---|
committer | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 21:02:52 +0000 |
commit | 9d8fe828142f8d57b1966f711c194b4c2ef36614 (patch) | |
tree | 158f34ee464ae078c39818464e3ec0d5733c852c /gpu/demos | |
parent | c78faffd1c85cc34d6dbaa0b26db89c3e87e8675 (diff) | |
download | chromium_src-9d8fe828142f8d57b1966f711c194b4c2ef36614.zip chromium_src-9d8fe828142f8d57b1966f711c194b4c2ef36614.tar.gz chromium_src-9d8fe828142f8d57b1966f711c194b4c2ef36614.tar.bz2 |
Removed config management from Graphics3D API. It will be better handled in the EGL helper library.
Also removed redundant enums from the API.
Review URL: http://codereview.chromium.org/7576012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97019 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/demos')
-rw-r--r-- | gpu/demos/framework/pepper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/demos/framework/pepper.cc b/gpu/demos/framework/pepper.cc index 9947e31..9be8085 100644 --- a/gpu/demos/framework/pepper.cc +++ b/gpu/demos/framework/pepper.cc @@ -88,7 +88,7 @@ class PluginInstance : public pp::Instance { PP_GRAPHICS3DATTRIB_HEIGHT, size_.height(), PP_GRAPHICS3DATTRIB_NONE }; - context_ = pp::Graphics3D_Dev(*this, 0, pp::Graphics3D_Dev(), attribs); + context_ = pp::Graphics3D_Dev(*this, pp::Graphics3D_Dev(), attribs); if (context_.is_null()) return; |