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

@ -16,17 +16,11 @@ using DeviceFD = s32;
constexpr DeviceFD INVALID_NVDRV_FD = -1;
struct Fence {
struct NvFence {
s32 id;
u32 value;
};
static_assert(sizeof(Fence) == 8, "Fence has wrong size");
struct MultiFence {
u32 num_fences;
std::array<Fence, 4> fences;
};
static_assert(sizeof(NvFence) == 8, "Fence has wrong size");
enum class NvResult : u32 {
Success = 0x0,