aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-01-05 22:04:37 -0300
committerThog <thog@protonmail.com>2020-01-09 02:13:00 +0100
commit18814d44b2e19f7a93ed48ef4799ced585d071e9 (patch)
tree23270d97f5836e3eb7b07c905259065718504422 /Ryujinx.HLE/HOS
parent383452f5cf2a81d50ef1a5e630fba45c6fb97647 (diff)
Address PR feedback
Add TODO comment for GL_EXT_polygon_offset_clamp
Diffstat (limited to 'Ryujinx.HLE/HOS')
-rw-r--r--Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs12
1 files changed, 7 insertions, 5 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs b/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs
index 72235427..212d69e0 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs
+++ b/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostChannel/NvHostChannelDeviceFile.cs
@@ -12,11 +12,13 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostChannel
{
class NvHostChannelDeviceFile : NvDeviceFile
{
- private uint _timeout;
- private uint _submitTimeout;
- private uint _timeslice;
- private GpuContext _gpu;
- private ARMeilleure.Memory.MemoryManager _memory;
+ private uint _timeout;
+ private uint _submitTimeout;
+ private uint _timeslice;
+
+ private GpuContext _gpu;
+
+ private ARMeilleure.Memory.MemoryManager _memory;
public NvHostChannelDeviceFile(ServiceCtx context) : base(context)
{