2014-07-12 09:46:14 +02:00
|
|
|
#include "stdafx.h"
|
2015-02-22 09:50:26 +01:00
|
|
|
#include "Emu/System.h"
|
2016-03-21 20:43:03 +01:00
|
|
|
#include "Emu/Cell/PPUModule.h"
|
|
|
|
|
|
2015-02-22 15:50:11 +01:00
|
|
|
#include "cellScreenshot.h"
|
2013-09-28 04:36:57 +02:00
|
|
|
|
2016-05-13 15:55:34 +02:00
|
|
|
logs::channel cellScreenshot("cellScreenshot", logs::level::notice);
|
2013-09-28 04:36:57 +02:00
|
|
|
|
2015-02-22 09:50:26 +01:00
|
|
|
s32 cellScreenShotSetParameter() //const CellScreenShotSetParam *param
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-22 09:50:26 +01:00
|
|
|
s32 cellScreenShotSetOverlayImage() //const char *srcDir, const char *srcFile, s32 offset_x, s32 offset_y
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-22 09:50:26 +01:00
|
|
|
s32 cellScreenShotEnable()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-22 09:50:26 +01:00
|
|
|
s32 cellScreenShotDisable()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
|
|
|
|
UNIMPLEMENTED_FUNC(cellScreenshot);
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-21 20:43:03 +01:00
|
|
|
DECLARE(ppu_module_manager::cellScreenShot)("cellScreenShotUtility", []()
|
2013-09-28 04:36:57 +02:00
|
|
|
{
|
2016-03-21 20:43:03 +01:00
|
|
|
REG_FUNC(cellScreenShotUtility, cellScreenShotSetParameter);
|
|
|
|
|
REG_FUNC(cellScreenShotUtility, cellScreenShotSetOverlayImage);
|
|
|
|
|
REG_FUNC(cellScreenShotUtility, cellScreenShotEnable);
|
|
|
|
|
REG_FUNC(cellScreenShotUtility, cellScreenShotDisable);
|
2015-02-22 12:38:14 +01:00
|
|
|
});
|