diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-20 04:16:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 04:16:17 +0200 |
commit | 14bf88a777eac6b75a48f3673dc458f9bcb6ebcb (patch) | |
tree | 8a6957dafa6b42ea2719fb2be95854f6ff6eca28 /src/core/hle/service/vi/vi.cpp | |
parent | Merge pull request #356 from lioncash/shader (diff) | |
parent | vi: Remove redundant initializers in the constructors (diff) | |
download | yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.tar yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.tar.gz yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.tar.bz2 yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.tar.lz yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.tar.xz yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.tar.zst yuzu-14bf88a777eac6b75a48f3673dc458f9bcb6ebcb.zip |
Diffstat (limited to 'src/core/hle/service/vi/vi.cpp')
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index 7c319ee67..b712daa2b 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -150,7 +150,7 @@ private: class NativeWindow : public Parcel { public: - explicit NativeWindow(u32 id) : Parcel() { + explicit NativeWindow(u32 id) { data.id = id; } ~NativeWindow() override = default; @@ -197,7 +197,7 @@ public: class IGBPConnectResponseParcel : public Parcel { public: - explicit IGBPConnectResponseParcel(u32 width, u32 height) : Parcel() { + explicit IGBPConnectResponseParcel(u32 width, u32 height) { data.width = width; data.height = height; } @@ -247,10 +247,6 @@ public: }; class IGBPSetPreallocatedBufferResponseParcel : public Parcel { -public: - IGBPSetPreallocatedBufferResponseParcel() : Parcel() {} - ~IGBPSetPreallocatedBufferResponseParcel() override = default; - protected: void SerializeData() override { // TODO(Subv): Find out what this means @@ -289,7 +285,7 @@ static_assert(sizeof(BufferProducerFence) == 36, "BufferProducerFence has wrong class IGBPDequeueBufferResponseParcel : public Parcel { public: - explicit IGBPDequeueBufferResponseParcel(u32 slot) : Parcel(), slot(slot) {} + explicit IGBPDequeueBufferResponseParcel(u32 slot) : slot(slot) {} ~IGBPDequeueBufferResponseParcel() override = default; protected: @@ -383,7 +379,7 @@ public: class IGBPQueueBufferResponseParcel : public Parcel { public: - explicit IGBPQueueBufferResponseParcel(u32 width, u32 height) : Parcel() { + explicit IGBPQueueBufferResponseParcel(u32 width, u32 height) { data.width = width; data.height = height; } @@ -424,7 +420,7 @@ public: class IGBPQueryResponseParcel : public Parcel { public: - explicit IGBPQueryResponseParcel(u32 value) : Parcel(), value(value) {} + explicit IGBPQueryResponseParcel(u32 value) : value(value) {} ~IGBPQueryResponseParcel() override = default; protected: |