mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Merge pull request #716 from delroth/vertex-loader
Make vertex loader testable
This commit is contained in:
commit
e15ec56bf0
47 changed files with 647 additions and 113 deletions
|
@ -221,7 +221,18 @@ if(_M_ARM_32)
|
|||
)
|
||||
endif()
|
||||
|
||||
set(LIBS bdisasm inputcommon videoogl videosoftware sfml-network)
|
||||
set(LIBS
|
||||
audiocommon
|
||||
bdisasm
|
||||
common
|
||||
discio
|
||||
inputcommon
|
||||
${LZO}
|
||||
sfml-network
|
||||
videoogl
|
||||
videosoftware
|
||||
z
|
||||
)
|
||||
|
||||
if(LIBUSB_FOUND)
|
||||
# Using shared LibUSB
|
||||
|
@ -236,6 +247,8 @@ if(WIN32)
|
|||
HW/WiimoteReal/IOWin.cpp)
|
||||
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
set(SRCS ${SRCS} HW/BBA-TAP/TAP_Apple.cpp HW/WiimoteReal/IOdarwin.mm)
|
||||
set(LIBS ${LIBS}
|
||||
${IOB_LIBRARY})
|
||||
elseif(UNIX)
|
||||
set(SRCS ${SRCS} HW/BBA-TAP/TAP_Unix.cpp)
|
||||
if((${CMAKE_SYSTEM_NAME} MATCHES "Linux") AND BLUEZ_FOUND)
|
||||
|
|
|
@ -42,6 +42,8 @@ void Host_UpdateLogDisplay();
|
|||
void Host_UpdateMainFrame();
|
||||
void Host_UpdateStatusBar(const std::string& text, int Filed = 0);
|
||||
void Host_UpdateTitle(const std::string& title);
|
||||
void Host_ShowVideoConfig(void* parent, const std::string& backend_name,
|
||||
const std::string& config_name);
|
||||
|
||||
// TODO (neobrain): Remove this from host!
|
||||
void* Host_GetRenderHandle();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue