mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-01-06 06:28:50 +01:00
VideoCore: Convert x64 shader JIT to use Xbyak for assembly
This commit is contained in:
parent
17fccb8c5d
commit
f4e98ecf3f
6 changed files with 461 additions and 223 deletions
|
|
@ -59,6 +59,9 @@ create_directory_groups(${SRCS} ${HEADERS})
|
|||
|
||||
add_library(video_core STATIC ${SRCS} ${HEADERS})
|
||||
target_link_libraries(video_core glad)
|
||||
if (ARCHITECTURE_x86_64)
|
||||
target_link_libraries(video_core xbyak)
|
||||
endif()
|
||||
|
||||
if (PNG_FOUND)
|
||||
target_link_libraries(video_core ${PNG_LIBRARIES})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue