Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Unified Diff: ppapi/c/dev/ppb_graphics_3d_dev.h

Issue 7624003: Removed PPB_Graphics3D::GetString(). Versioning should be handled in pepper at a higher level. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/c/dev/pp_graphics_3d_dev.h ('k') | ppapi/cpp/dev/graphics_3d_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppb_graphics_3d_dev.h
===================================================================
--- ppapi/c/dev/ppb_graphics_3d_dev.h (revision 97019)
+++ ppapi/c/dev/ppb_graphics_3d_dev.h (working copy)
@@ -10,7 +10,6 @@
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
-#include "ppapi/c/pp_var.h"
// Example usage from plugin code:
//
@@ -33,25 +32,6 @@
#define PPB_GRAPHICS_3D_DEV_INTERFACE PPB_GRAPHICS_3D_DEV_INTERFACE_0_7
piman 2011/08/16 22:21:51 Please rev interface.
struct PPB_Graphics3D_Dev {
- // Returns a string describing some aspect of the Graphics3D implementation.
- // name may be one of:
- // - PP_GRAPHICS3DSTRING_EXTENSIONS: describes which extensions are supported
- // by the implementation. The string is zero-terminated and contains a
- // space-separated list of extension names; extension names themselves do
- // not contain spaces. If there are no extensions, then the empty string is
- // returned.
- // - PP_GRAPHICS3DSTRING_VENDOR: Implementation dependent.
- // - PP_GRAPHICS3DSTRING_VERSION: The format of the string is:
- // <major version.minor version><space><vendor specific info>
- // Both the major and minor portions of the version number are numeric.
- // The vendor-specific information is optional; if present, its format and
- // contents are implementation specific.
- // On failure, PP_VARTYPE_UNDEFINED is returned.
- //
- // TODO(alokp): Does this function need module argument?
- //
- struct PP_Var (*GetString)(int32_t name);
-
// Creates and initializes a rendering context and returns a handle to it.
// The returned context is off-screen to start with. It must be attached to
// a plugin instance using PPB_Instance::BindGraphics to draw on the web page.
« no previous file with comments | « ppapi/c/dev/pp_graphics_3d_dev.h ('k') | ppapi/cpp/dev/graphics_3d_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698