[HID] Added support for Xbox 360 Skylanders Portal

- This requires Zadig for installation of WinUSB driver for portal
This commit is contained in:
Gliniak
2025-04-07 22:14:31 +02:00
committed by Radosław Gliński
parent 7667958556
commit 7298536d46
16 changed files with 383 additions and 2 deletions

View File

@@ -265,7 +265,6 @@ workspace("xenia")
include("third_party/fmt.lua")
include("third_party/glslang-spirv.lua")
include("third_party/imgui.lua")
include("third_party/libusb.lua")
include("third_party/mspack.lua")
include("third_party/snappy.lua")
include("third_party/xxhash.lua")
@@ -274,6 +273,10 @@ workspace("xenia")
include("third_party/zlib.lua")
include("third_party/pugixml.lua")
if os.istarget("windows") then
include("third_party/libusb.lua")
end
if not os.istarget("android") then
-- SDL2 requires sdl2-config, and as of November 2020 isn't high-quality on
-- Android yet, most importantly in game controllers - the keycode and axis
@@ -308,6 +311,7 @@ workspace("xenia")
include("src/xenia/gpu/vulkan")
include("src/xenia/hid")
include("src/xenia/hid/nop")
include("src/xenia/hid/skylander")
include("src/xenia/kernel")
include("src/xenia/patcher")
include("src/xenia/ui")