Read combine samples flag on server.

This commit is contained in:
Bartosz Taudul 2021-06-15 01:33:43 +02:00
parent 697ec4372e
commit 891e1ac280
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 2 additions and 0 deletions

View File

@ -2843,6 +2843,7 @@ void Worker::Exec()
m_ignoreMemFreeFaults = ( welcome.flags & WelcomeFlag::OnDemand ) || ( welcome.flags & WelcomeFlag::IsApple );
m_data.cpuArch = (CpuArchitecture)welcome.cpuArch;
m_codeTransfer = welcome.flags & WelcomeFlag::CodeTransfer;
m_combineSamples = welcome.flags & WelcomeFlag::CombineSamples;
m_data.cpuId = welcome.cpuId;
memcpy( m_data.cpuManufacturer, welcome.cpuManufacturer, 12 );
m_data.cpuManufacturer[12] = '\0';

View File

@ -884,6 +884,7 @@ private:
bool m_onDemand;
bool m_ignoreMemFreeFaults;
bool m_codeTransfer;
bool m_combineSamples;
short_ptr<GpuCtxData> m_gpuCtxMap[256];
uint32_t m_pendingCallstackId = 0;