mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
commit
a852baee5b
8 changed files with 8 additions and 14 deletions
|
@ -2,7 +2,9 @@
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include "GL/glext.h"
|
#include "GL/glext.h"
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
typedef BOOL (WINAPI* PFNWGLSWAPINTERVALEXTPROC) (int interval);
|
typedef BOOL (WINAPI* PFNWGLSWAPINTERVALEXTPROC) (int interval);
|
||||||
|
#endif
|
||||||
|
|
||||||
#define OPENGL_PROC(p, n) extern p gl##n
|
#define OPENGL_PROC(p, n) extern p gl##n
|
||||||
#define OPENGL_PROC2(p, n, tn) OPENGL_PROC(p, n)
|
#define OPENGL_PROC2(p, n, tn) OPENGL_PROC(p, n)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include "Loader/ELF.h"
|
#include "Loader/ELF.h"
|
||||||
#include "Emu/Cell/RawSPUThread.h"
|
#include "Emu/Cell/RawSPUThread.h"
|
||||||
|
|
||||||
SysCallBase sc_spu("sys_spu");
|
static SysCallBase sc_spu("sys_spu");
|
||||||
extern SysCallBase sys_event;
|
extern SysCallBase sys_event;
|
||||||
|
|
||||||
static const u32 g_spu_group_thr_count = 255;
|
static const u32 g_spu_group_thr_count = 255;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "stdafx.h"
|
#include "stdafx.h"
|
||||||
#include "Emu/SysCalls/SysCalls.h"
|
#include "Emu/SysCalls/SysCalls.h"
|
||||||
|
|
||||||
SysCallBase sc_spu("sys_spu");
|
static SysCallBase sc_spu("sys_spu");
|
||||||
|
|
||||||
u32 _max_usable_spu = 0;
|
u32 _max_usable_spu = 0;
|
||||||
u32 _max_raw_spu = 0;
|
u32 _max_raw_spu = 0;
|
||||||
|
@ -18,4 +18,4 @@ int sys_raw_spu_create(u32 id_addr, u32 attr_addr)
|
||||||
{
|
{
|
||||||
Memory.Write32(id_addr, Emu.GetIdManager().GetNewID("raw_spu"));
|
Memory.Write32(id_addr, Emu.GetIdManager().GetNewID("raw_spu"));
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
#include "stdafx.h"
|
|
||||||
|
|
||||||
class AboutDialog
|
class AboutDialog
|
||||||
: public wxDialog
|
: public wxDialog
|
||||||
{
|
{
|
|
@ -1,6 +1,3 @@
|
||||||
#include "stdafx.h"
|
|
||||||
#include "Emu/CPU/CPUDisAsm.h"
|
|
||||||
|
|
||||||
class InstructionEditorDialog
|
class InstructionEditorDialog
|
||||||
: public wxDialog
|
: public wxDialog
|
||||||
{
|
{
|
|
@ -7,8 +7,8 @@
|
||||||
#include "Emu/ARMv7/ARMv7DisAsm.h"
|
#include "Emu/ARMv7/ARMv7DisAsm.h"
|
||||||
#include "Emu/ARMv7/ARMv7Decoder.h"
|
#include "Emu/ARMv7/ARMv7Decoder.h"
|
||||||
|
|
||||||
#include "InstructionEditor.cpp"
|
#include "InstructionEditor.h"
|
||||||
#include "RegisterEditor.cpp"
|
#include "RegisterEditor.h"
|
||||||
|
|
||||||
//static const int show_lines = 30;
|
//static const int show_lines = 30;
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include "Emu/GS/sysutil_video.h"
|
#include "Emu/GS/sysutil_video.h"
|
||||||
#include "Gui/VHDDManager.h"
|
#include "Gui/VHDDManager.h"
|
||||||
#include "Gui/VFSManager.h"
|
#include "Gui/VFSManager.h"
|
||||||
#include "Gui/AboutDialog.cpp"
|
#include "Gui/AboutDialog.h"
|
||||||
#include <wx/dynlib.h>
|
#include <wx/dynlib.h>
|
||||||
|
|
||||||
#include "scetool/scetool.cpp"
|
#include "scetool/scetool.cpp"
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
#include "stdafx.h"
|
|
||||||
#include "Emu/CPU/CPUDisAsm.h"
|
|
||||||
|
|
||||||
class RegisterEditorDialog : public wxDialog
|
class RegisterEditorDialog : public wxDialog
|
||||||
{
|
{
|
||||||
u64 pc;
|
u64 pc;
|
Loading…
Add table
Add a link
Reference in a new issue