Changeset 252 in flair-src for trunk/lib/FlairCore/src/Matrix.cpp
- Timestamp:
- 07/05/18 17:57:08 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairCore/src/Matrix.cpp
r214 r252 188 188 } 189 189 190 void Matrix:: CopyDatas(char *dst) const {190 void Matrix::RawRead(char *dst) const { 191 191 GetMutex(); 192 192 memcpy(dst, pimpl_->datas, dataType.GetSize()); … … 194 194 } 195 195 196 void Matrix::RawWrite(char *src) { 197 GetMutex(); 198 memcpy(pimpl_->datas, src,dataType.GetSize()); 199 ReleaseMutex(); 200 } 201 196 202 uint32_t Matrix::Rows(void) const { return pimpl_->descriptor->Rows(); } 197 203
Note:
See TracChangeset
for help on using the changeset viewer.