hle: nvdrv: Rename Fence to NvFence to avoid naming conflicts.

This commit is contained in:
bunnei
2021-11-11 18:14:35 -08:00
parent d456b9d554
commit 402273d91b
4 changed files with 13 additions and 17 deletions

View File

@ -12,6 +12,7 @@
#include "core/hle/service/kernel_helpers.h"
#include "core/hle/service/nvdrv/nvdata.h"
#include "core/hle/service/nvdrv/syncpoint_manager.h"
#include "core/hle/service/nvflinger/ui/fence.h"
#include "core/hle/service/service.h"
namespace Core {
@ -37,7 +38,7 @@ class nvdevice;
/// Represents an Nvidia event
struct NvEvent {
Kernel::KEvent* event{};
Fence fence{};
NvFence fence{};
};
struct EventInterface {