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 |