mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
EXCEPTION macro removed
fmt::throw_exception<> implemented ::narrow improved Minor fixes
This commit is contained in:
parent
46735d6b3d
commit
a7e808b35b
198 changed files with 3025 additions and 2956 deletions
|
|
@ -8,7 +8,7 @@ logs::channel sceJpegEnc("sceJpegEnc", logs::level::notice);
|
|||
|
||||
s32 sceJpegEncoderGetContextSize()
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderInit(
|
||||
|
|
@ -19,19 +19,19 @@ s32 sceJpegEncoderInit(
|
|||
vm::ptr<void> pJpeg,
|
||||
u32 oJpegbufSize)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderEncode(
|
||||
SceJpegEncoderContext context,
|
||||
vm::cptr<void> pYCbCr)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderEnd(SceJpegEncoderContext context)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderSetValidRegion(
|
||||
|
|
@ -39,21 +39,21 @@ s32 sceJpegEncoderSetValidRegion(
|
|||
s32 iFrameWidth,
|
||||
s32 iFrameHeight)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderSetCompressionRatio(
|
||||
SceJpegEncoderContext context,
|
||||
s32 compratio)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderSetHeaderMode(
|
||||
SceJpegEncoderContext context,
|
||||
s32 headerMode)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderSetOutputAddr(
|
||||
|
|
@ -61,7 +61,7 @@ s32 sceJpegEncoderSetOutputAddr(
|
|||
vm::ptr<void> pJpeg,
|
||||
u32 oJpegbufSize)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
s32 sceJpegEncoderCsc(
|
||||
|
|
@ -71,7 +71,7 @@ s32 sceJpegEncoderCsc(
|
|||
s32 iFrameWidth,
|
||||
s32 inputPixelFormat)
|
||||
{
|
||||
throw EXCEPTION("");
|
||||
fmt::throw_exception("Unimplemented" HERE);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue