Merge pull request #1146 from OpenSpace/feature/sgct

Merging the changes to make the new SGCT version the default one
This commit is contained in:
Alexander Bock
2020-05-04 10:48:48 +02:00
committed by GitHub
24 changed files with 680 additions and 776 deletions

View File

@@ -79,11 +79,11 @@ void SyncBuffer::decode(std::string& s) {
s = decode();
}
void SyncBuffer::setData(std::vector<char> data) {
void SyncBuffer::setData(std::vector<std::byte> data) {
_dataStream = std::move(data);
}
std::vector<char> SyncBuffer::data() {
std::vector<std::byte> SyncBuffer::data() {
_dataStream.resize(_encodeOffset);
return _dataStream;