Commit e7a51bf1 authored by jond@google.com's avatar jond@google.com

New and updated documentation.

Review URL: http://codereview.chromium.org/8004005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106973 0039d316-1c4b-4281-b951-d872f2087c98
parent f42a7f91
This diff is collapsed.
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
#include "ppapi/c/pp_stdint.h" #include "ppapi/c/pp_stdint.h"
/// @file
/// This file defines the API for callbacks related to 3D.
namespace pp { namespace pp {
class Instance; class Instance;
...@@ -19,12 +22,18 @@ class Widget_Dev; ...@@ -19,12 +22,18 @@ class Widget_Dev;
// instance. // instance.
class Graphics3DClient { class Graphics3DClient {
public: public:
///
/// A constructor for creating a Graphics3DClient.
///
/// @param[in] instance The instance that will own the new
/// <code>Graphics3DClient</code>.
Graphics3DClient(Instance* instance); Graphics3DClient(Instance* instance);
/// Destructor.
virtual ~Graphics3DClient(); virtual ~Graphics3DClient();
/** /// Graphics3DContextLost() is a notification that the context was lost for
* Notification that the context was lost for the 3D devices. /// the 3D devices.
*/
virtual void Graphics3DContextLost() = 0; virtual void Graphics3DContextLost() = 0;
private: private:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment