mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-04 02:37:53 -05:00
hle: nvdrv: Rename Fence to NvFence to avoid naming conflicts.
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user