mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
d3d12: Create window
This commit is contained in:
parent
976d707596
commit
0b5816d6d6
8 changed files with 181 additions and 6 deletions
|
|
@ -26,6 +26,7 @@
|
|||
#include "Gui/SaveDataDialog.h"
|
||||
|
||||
#include "Gui/GLGSFrame.h"
|
||||
#include "Gui/D3DGSFrame.h"
|
||||
#include <wx/stdpaths.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
|
|
@ -137,6 +138,11 @@ bool Rpcs3App::OnInit()
|
|||
return new GLGSFrame();
|
||||
});
|
||||
|
||||
SetGetD3DGSFrameCallback([]() ->GSFrameBase2*
|
||||
{
|
||||
return new D3DGSFrame();
|
||||
});
|
||||
|
||||
g_msg_dialog.reset(new MsgDialogFrame);
|
||||
g_savedata_dialog.reset(new SaveDataDialogFrame);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue