| 62 | CmEventNameProvider gProfileNameProvider; |
| 63 | |
| 64 | void initializeModelTypes(PvdDataStream& stream) |
| 65 | { |
| 66 | stream.createClass<profile::PxProfileZone>(); |
| 67 | stream.createProperty<profile::PxProfileZone, uint8_t>( |
| 68 | "events", PvdCommStreamEmbeddedTypes::getProfileEventStreamSemantic(), PropertyType::Array); |
| 69 | |
| 70 | stream.createClass<profile::PxProfileMemoryEventBuffer>(); |
| 71 | stream.createProperty<profile::PxProfileMemoryEventBuffer, uint8_t>( |
| 72 | "events", PvdCommStreamEmbeddedTypes::getMemoryEventStreamSemantic(), PropertyType::Array); |
| 73 | |
| 74 | stream.createClass<PvdUserRenderer>(); |
| 75 | stream.createProperty<PvdUserRenderer, uint8_t>( |
| 76 | "events", PvdCommStreamEmbeddedTypes::getRendererEventStreamSemantic(), PropertyType::Array); |
| 77 | } |
| 78 | |
| 79 | PvdImpl* PvdImpl::sInstance = NULL; |
| 80 | uint32_t PvdImpl::sRefCount = 0; |