From 3446f72f089bfeece5fdbc3634d9a59895943f67 Mon Sep 17 00:00:00 2001 From: kmather73 Date: Sun, 16 Dec 2018 18:57:08 -0800 Subject: [PATCH] Forgot to remove GpuSmaphoreAddress union. --- src/video_core/gpu.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index fcd44ea83a..72e3bd4944 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -115,16 +115,6 @@ enum class EngineID { MAXWELL_DMA_COPY_A = 0xB0B5, }; -union GpuSmaphoreAddress { - u64 raw; - - BitField<0, 32, GPUVAddr> low; - BitField<32, 8, GPUVAddr> high; - BitField<0, 40, GPUVAddr> addr; -}; - -static_assert(sizeof(GpuSmaphoreAddress) == sizeof(u64), "GpuSmaphoreAddress is incorrect size"); - class GPU final { public: explicit GPU(VideoCore::RasterizerInterface& rasterizer);