| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |