diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 06:47:09 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 06:47:09 +0000 |
commit | 88cc7818c81afdcb418f8fd0486b2c8f57457525 (patch) | |
tree | e31e7bc875da0d45ecdf8db3bb703f80a354d861 /ppapi/cpp/instance.h | |
parent | 62df0a016209f927a61b76cf85f98c68aeea141f (diff) | |
download | chromium_src-88cc7818c81afdcb418f8fd0486b2c8f57457525.zip chromium_src-88cc7818c81afdcb418f8fd0486b2c8f57457525.tar.gz chromium_src-88cc7818c81afdcb418f8fd0486b2c8f57457525.tar.bz2 |
Remove Context3D/Surface3D
Graphics3D is the new black.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/8676042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112412 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/instance.h')
-rw-r--r-- | ppapi/cpp/instance.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ppapi/cpp/instance.h b/ppapi/cpp/instance.h index 981f29c..9a3bfaf 100644 --- a/ppapi/cpp/instance.h +++ b/ppapi/cpp/instance.h @@ -24,7 +24,6 @@ class Graphics2D; class Graphics3D; class InputEvent; class Rect; -class Surface3D_Dev; class URLLoader; class Var; @@ -278,17 +277,6 @@ class Instance { /// instance, so the caller can release its reference if it chooses. bool BindGraphics(const Graphics3D& graphics); - /// Binds the given Surface3D as the current display surface. - /// Refer to <code>BindGraphics(const Graphics2D& graphics)</code> for - /// further information. - /// - /// @param[in] graphics A <code>Surface3D_Dev</code> to bind. - /// - /// @return true if bind was successful or false if the device was not the - /// correct type. On success, a reference to the device will be held by the - /// instance, so the caller can release its reference if it chooses. - bool BindGraphics(const Surface3D_Dev& graphics); - /// IsFullFrame() determines if the instance is full-frame (repr). /// Such an instance represents the entire document in a frame rather than an /// embedded resource. This can happen if the user does a top-level |