aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2020-02-12 00:56:19 +0000
committerGitHub <noreply@github.com>2020-02-12 01:56:19 +0100
commit3aa3c4261a57e0daa595decbe689973bd0be473d (patch)
treea5a467580e4c6b7be96588df2525e28b83da2905 /Ryujinx.Common
parentc464e1ec522d41565923fbc542148ebeca61749e (diff)
Add inbuilt Opengl renderer to window (#922)
* add gl rendering widget * embed renderer into main window * add input * fix mouse input * fix mouse coords * refresh game list after closing game, remove profiler method * rebase, hide game list progress bar while game is running * Some bug fixes Changelog: - Reapply some changes that got lost while rebasing from #904 - Make sure to guarantee exclusivity on the GL context (fixing multiple possible race conditions on Windows) - Avoid making GLRenderer disposed multiple time * add fullscreen, enable input on focus, disable aplha * addressed comments * Disable transparency in the window * fix fullscreen state, fix focus, addressed comments * nit * addressed nit Co-authored-by: Thog <thog@protonmail.com>
Diffstat (limited to 'Ryujinx.Common')
-rw-r--r--Ryujinx.Common/Ryujinx.Common.csproj3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Common/Ryujinx.Common.csproj b/Ryujinx.Common/Ryujinx.Common.csproj
index 43a853a4..1b7cf8af 100644
--- a/Ryujinx.Common/Ryujinx.Common.csproj
+++ b/Ryujinx.Common/Ryujinx.Common.csproj
@@ -28,7 +28,8 @@
<ItemGroup>
<PackageReference Include="JsonPrettyPrinter" Version="1.0.1.1" />
- <PackageReference Include="Utf8Json" Version="1.3.7" />
+ <PackageReference Include="Utf8Json" Version="1.3.7" /><PackageReference Include="OpenTK.NetStandard" Version="1.0.5.12" />
+ <PackageReference Include="SharpFontCore" Version="0.1.1" />
</ItemGroup>
</Project>