Add a null graphics system (enable with --gpu=null)

Still uses vulkan to drive xenia UI, may look into decoupling later.
This commit is contained in:
Dr. Chat
2016-08-04 09:50:13 -05:00
parent 92859f5a28
commit 40f782a83b
7 changed files with 219 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
project_root = "../../../.."
include(project_root.."/tools/build")
group("src")
project("xenia-gpu-null")
uuid("42FCA0B3-4C20-4532-95E9-07D297013BE4")
kind("StaticLib")
language("C++")
links({
"xenia-base",
"xenia-gpu",
"xenia-ui",
"xenia-ui-vulkan",
"xxhash",
})
defines({
})
includedirs({
project_root.."/third_party/gflags/src",
})
local_platform_files()