Merge pull request #6652 from lat9nq/cmd-vulkan-fixes

yuzu-cmd: Linux Vulkan fixes
This commit is contained in:
bunnei 2021-07-19 20:54:03 -04:00 committed by GitHub
commit ffc78ce9c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 38 additions and 51 deletions

View file

@ -10,15 +10,7 @@
#include <thread>
#include <unordered_map>
// Ignore -Wimplicit-fallthrough due to https://github.com/libsdl-org/SDL/issues/4307
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
#endif
#include <SDL.h>
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
#include "common/common_types.h"
#include "common/threadsafe_queue.h"