shader, video_core: Fix GCC build errors

This commit is contained in:
ameerj 2021-08-14 00:01:47 -04:00 committed by Fernando Sahmkow
parent 65781f88f8
commit 68e038404c
3 changed files with 3 additions and 14 deletions

View file

@ -41,13 +41,9 @@ using VideoCore::Surface::PixelFormatFromRenderTargetFormat;
using namespace Common::Literals;
struct ImageViewInOut {
u32 index;
bool blacklist;
union {
struct Empty {
} empty{};
ImageViewId id;
};
u32 index{};
bool blacklist{};
ImageViewId id{};
};
template <class P>