mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 15:36:26 +00:00
ARMv7: stubs for other modules, loader improved
This commit is contained in:
parent
1fa301b719
commit
62c8f2ac34
66 changed files with 2616 additions and 59 deletions
56
rpcs3/Emu/ARMv7/Modules/sceCamera.cpp
Normal file
56
rpcs3/Emu/ARMv7/Modules/sceCamera.cpp
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
#include "stdafx.h"
|
||||
#include "Emu/System.h"
|
||||
#include "Emu/ARMv7/PSVFuncList.h"
|
||||
|
||||
extern psv_log_base sceCamera;
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceCamera, #name, name)
|
||||
|
||||
psv_log_base sceCamera("SceCamera", []()
|
||||
{
|
||||
sceCamera.on_load = nullptr;
|
||||
sceCamera.on_unload = nullptr;
|
||||
sceCamera.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0xA462F801, sceCameraOpen);
|
||||
//REG_FUNC(0xCD6E1CFC, sceCameraClose);
|
||||
//REG_FUNC(0xA8FEAE35, sceCameraStart);
|
||||
//REG_FUNC(0x1DD9C9CE, sceCameraStop);
|
||||
//REG_FUNC(0x79B5C2DE, sceCameraRead);
|
||||
//REG_FUNC(0x103A75B8, sceCameraIsActive);
|
||||
//REG_FUNC(0x624F7653, sceCameraGetSaturation);
|
||||
//REG_FUNC(0xF9F7CA3D, sceCameraSetSaturation);
|
||||
//REG_FUNC(0x85D5951D, sceCameraGetBrightness);
|
||||
//REG_FUNC(0x98D71588, sceCameraSetBrightness);
|
||||
//REG_FUNC(0x8FBE84BE, sceCameraGetContrast);
|
||||
//REG_FUNC(0x06FB2900, sceCameraSetContrast);
|
||||
//REG_FUNC(0xAA72C3DC, sceCameraGetSharpness);
|
||||
//REG_FUNC(0xD1A5BB0B, sceCameraSetSharpness);
|
||||
//REG_FUNC(0x44F6043F, sceCameraGetReverse);
|
||||
//REG_FUNC(0x1175F477, sceCameraSetReverse);
|
||||
//REG_FUNC(0x7E8EF3B2, sceCameraGetEffect);
|
||||
//REG_FUNC(0xE9D2CFB1, sceCameraSetEffect);
|
||||
//REG_FUNC(0x8B5E6147, sceCameraGetEV);
|
||||
//REG_FUNC(0x62AFF0B8, sceCameraSetEV);
|
||||
//REG_FUNC(0x06D3816C, sceCameraGetZoom);
|
||||
//REG_FUNC(0xF7464216, sceCameraSetZoom);
|
||||
//REG_FUNC(0x9FDACB99, sceCameraGetAntiFlicker);
|
||||
//REG_FUNC(0xE312958A, sceCameraSetAntiFlicker);
|
||||
//REG_FUNC(0x4EBD5C68, sceCameraGetISO);
|
||||
//REG_FUNC(0x3CF630A1, sceCameraSetISO);
|
||||
//REG_FUNC(0x2C36D6F3, sceCameraGetGain);
|
||||
//REG_FUNC(0xE65CFE86, sceCameraSetGain);
|
||||
//REG_FUNC(0xDBFFA1DA, sceCameraGetWhiteBalance);
|
||||
//REG_FUNC(0x4D4514AC, sceCameraSetWhiteBalance);
|
||||
//REG_FUNC(0x8DD1292B, sceCameraGetBacklight);
|
||||
//REG_FUNC(0xAE071044, sceCameraSetBacklight);
|
||||
//REG_FUNC(0x12B6FF26, sceCameraGetNightmode);
|
||||
//REG_FUNC(0x3F26233E, sceCameraSetNightmode);
|
||||
//REG_FUNC(0xD02CFA5C, sceCameraLedSwitch);
|
||||
//REG_FUNC(0x89B16030, sceCameraLedBlink);
|
||||
//REG_FUNC(0x7670474C, sceCameraUseCacheMemoryForTrial);
|
||||
//REG_FUNC(0x27BB0528, sceCameraGetNoiseReductionForDebug);
|
||||
//REG_FUNC(0x233C9E27, sceCameraSetNoiseReductionForDebug);
|
||||
//REG_FUNC(0xC387F4DC, sceCameraGetSharpnessOffForDebug);
|
||||
//REG_FUNC(0xE22C2375, sceCameraSetSharpnessOffForDebug);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue