Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
866e2f1762 | ||
|
|
0a705d6752 | ||
|
|
4f74fd5354 |
@@ -33,6 +33,14 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release version="1.0.1" date="2019-05-27">
|
||||
<description>
|
||||
<p>Bugfixes:</p>
|
||||
<ul>
|
||||
<li>Fixed broken video on GeForce Experience 3.19</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.0.0" date="2019-05-21">
|
||||
<description>
|
||||
<p>New features:</p>
|
||||
|
||||
@@ -23,7 +23,9 @@ public:
|
||||
m_DisplayLayer(nullptr),
|
||||
m_FormatDesc(nullptr),
|
||||
m_StreamView(nullptr),
|
||||
m_DisplayLink(nullptr)
|
||||
m_DisplayLink(nullptr),
|
||||
m_VsyncMutex(nullptr),
|
||||
m_VsyncPassed(nullptr)
|
||||
{
|
||||
SDL_zero(m_OverlayTextFields);
|
||||
}
|
||||
@@ -118,6 +120,11 @@ public:
|
||||
return false;
|
||||
}
|
||||
|
||||
// The CVDisplayLink callback uses these, so we must initialize them before
|
||||
// starting the callbacks.
|
||||
m_VsyncMutex = SDL_CreateMutex();
|
||||
m_VsyncPassed = SDL_CreateCond();
|
||||
|
||||
status = CVDisplayLinkStart(m_DisplayLink);
|
||||
if (status != kCVReturnSuccess) {
|
||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION,
|
||||
@@ -126,9 +133,6 @@ public:
|
||||
return false;
|
||||
}
|
||||
|
||||
m_VsyncMutex = SDL_CreateMutex();
|
||||
m_VsyncPassed = SDL_CreateCond();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
1.0.0
|
||||
1.0.1
|
||||
Submodule moonlight-common-c/moonlight-common-c updated: dffe51e885...801aaf43d6
Reference in New Issue
Block a user