| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 private: | 64 private: |
| 65 // Destroys the vertex struct. | 65 // Destroys the vertex struct. |
| 66 void DestroyVertexStruct(); | 66 void DestroyVertexStruct(); |
| 67 | 67 |
| 68 // The renderer that created this shape data. | 68 // The renderer that created this shape data. |
| 69 RendererCB *renderer_; | 69 RendererCB *renderer_; |
| 70 | 70 |
| 71 // The resource ID for the vertex struct representing the input vertex | 71 // The resource ID for the vertex struct representing the input vertex |
| 72 // streams, or kInvalidResource if it hasn't been created yet. | 72 // streams, or kInvalidResource if it hasn't been created yet. |
| 73 command_buffer::ResourceID vertex_struct_id_; | 73 command_buffer::ResourceId vertex_struct_id_; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace o3d | 76 } // namespace o3d |
| 77 | 77 |
| 78 #endif // O3D_CORE_CROSS_COMMAND_BUFFER_STREAM_BANK_CB_H_ | 78 #endif // O3D_CORE_CROSS_COMMAND_BUFFER_STREAM_BANK_CB_H_ |
| OLD | NEW |