Forgot to remove GpuSmaphoreAddress union.

This commit is contained in:
kmather73
2018-12-16 18:57:08 -08:00
parent 2f7712ebc2
commit 3446f72f08
-10
View File
@@ -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);