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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « plugin/idl/param_object.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2009, Google Inc. 2 * Copyright 2009, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 %] 59 %]
60 [nocpp, include="core/cross/render_surface.h"] class RenderSurface 60 [nocpp, include="core/cross/render_surface.h"] class RenderSurface
61 : RenderSurfaceBase { 61 : RenderSurfaceBase {
62 %[ 62 %[
63 The texture in which this surface is contained. 63 The texture in which this surface is contained.
64 %] 64 %]
65 [field_access=private, getter] Texture? texture; 65 [field_access=private, getter] Texture? texture;
66 }; // RenderSurface 66 }; // RenderSurface
67 67
68 %[ 68 %[
69 A Param which stores a RenderSurface.
70 %]
71 [nocpp, include="core/cross/render_surface.h"] class ParamRenderSurface : Param
72 {%[
73 The RenderSurface stored by the Param.
74 %]
75 [getter, setter] RenderSurface? value_;
76 };
77
78 %[
69 A RenderDepthStencilSurface represents a depth stencil render surface. 79 A RenderDepthStencilSurface represents a depth stencil render surface.
70 %] 80 %]
71 [nocpp, include="core/cross/render_surface.h"] 81 [nocpp, include="core/cross/render_surface.h"]
72 class RenderDepthStencilSurface 82 class RenderDepthStencilSurface
73 : RenderSurfaceBase { 83 : RenderSurfaceBase {
74 }; // RenderDepthStencilSurface 84 }; // RenderDepthStencilSurface
75 85
86 %[
87 A Param which stores a RenderDepthStencilSurface.
88 %]
89 [nocpp, include="core/cross/render_surface.h"]
90 class ParamRenderDepthStencilSurface : Param
91 {%[
92 The RenderDepthStencilSurface stored by the Param.
93 %]
94 [getter, setter] RenderDepthStencilSurface? value_;
95 };
96
97
76 } // namespace o3d 98 } // namespace o3d
OLDNEW
« 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