| Index: core/cross/command_buffer/render_surface_cb.h
|
| ===================================================================
|
| --- core/cross/command_buffer/render_surface_cb.h (revision 26885)
|
| +++ core/cross/command_buffer/render_surface_cb.h (working copy)
|
| @@ -90,10 +90,10 @@
|
| virtual void Destroy();
|
|
|
| // Returns the render surface resource ID.
|
| - command_buffer::ResourceID resource_id() const { return resource_id_; }
|
| + command_buffer::ResourceId resource_id() const { return resource_id_; }
|
|
|
| private:
|
| - command_buffer::ResourceID resource_id_;
|
| + command_buffer::ResourceId resource_id_;
|
| RendererCB *renderer_;
|
| DISALLOW_COPY_AND_ASSIGN(RenderSurfaceCB);
|
| };
|
| @@ -127,10 +127,10 @@
|
| virtual void Destroy();
|
|
|
| // Returns the render depth stencil surface resource ID.
|
| - command_buffer::ResourceID resource_id() const { return resource_id_; }
|
| + command_buffer::ResourceId resource_id() const { return resource_id_; }
|
|
|
| private:
|
| - command_buffer::ResourceID resource_id_;
|
| + command_buffer::ResourceId resource_id_;
|
| RendererCB *renderer_;
|
| DISALLOW_COPY_AND_ASSIGN(RenderDepthStencilSurfaceCB);
|
| };
|
|
|