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

Unified Diff: plugin/idl/render_surface.idl

Issue 149298: Add missing Param IDL for ParamRenderSurface and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 5 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 | « plugin/idl/param_object.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugin/idl/render_surface.idl
===================================================================
--- plugin/idl/render_surface.idl (revision 20010)
+++ plugin/idl/render_surface.idl (working copy)
@@ -66,6 +66,16 @@
}; // RenderSurface
%[
+ A Param which stores a RenderSurface.
+%]
+[nocpp, include="core/cross/render_surface.h"] class ParamRenderSurface : Param
+{%[
+ The RenderSurface stored by the Param.
+ %]
+ [getter, setter] RenderSurface? value_;
+};
+
+%[
A RenderDepthStencilSurface represents a depth stencil render surface.
%]
[nocpp, include="core/cross/render_surface.h"]
@@ -73,4 +83,16 @@
: RenderSurfaceBase {
}; // RenderDepthStencilSurface
+%[
+ A Param which stores a RenderDepthStencilSurface.
+%]
+[nocpp, include="core/cross/render_surface.h"]
+class ParamRenderDepthStencilSurface : Param
+{%[
+ The RenderDepthStencilSurface stored by the Param.
+ %]
+ [getter, setter] RenderDepthStencilSurface? value_;
+};
+
+
} // namespace o3d
« no previous file with comments | « plugin/idl/param_object.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698