mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-08 16:01:19 +12:00
Fix incorrect streamout buffer index in GS + refactor various code (#258)
This commit is contained in:
parent
4a3d02db55
commit
03f5967408
45 changed files with 70 additions and 92 deletions
|
@ -189,7 +189,7 @@ public:
|
|||
// update provider if settings are different from default provider
|
||||
void update_provider(std::shared_ptr<TProvider> provider)
|
||||
{
|
||||
m_provider = provider;
|
||||
m_provider = std::move(provider);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
|
|
@ -104,9 +104,7 @@ struct Quat
|
|||
class MotionSample
|
||||
{
|
||||
public:
|
||||
MotionSample()
|
||||
{
|
||||
}
|
||||
MotionSample() = default;
|
||||
|
||||
MotionSample(float acc[3], float accAcceleration, float gyro[3], float orientation[3],
|
||||
float quaternion[4]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue