mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
71 lines
2.8 KiB
C++
71 lines
2.8 KiB
C++
// Vita3K emulator project
|
|
// Copyright (C) 2025 Vita3K team
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#include "../SceDisplay/SceDisplay.h"
|
|
#include <module/module.h>
|
|
|
|
#include <util/tracy.h>
|
|
|
|
TRACY_MODULE_NAME(SceDisplayUser);
|
|
|
|
EXPORT(SceInt32, sceDisplayGetFrameBuf, SceDisplayFrameBuf *pFrameBuf, SceDisplaySetBufSync sync) {
|
|
TRACY_FUNC(sceDisplayGetFrameBuf, pFrameBuf, sync);
|
|
if (!pFrameBuf)
|
|
return SCE_DISPLAY_ERROR_INVALID_ADDR;
|
|
if ((pFrameBuf->size & 0xfffffffb) != 0x18)
|
|
return SCE_DISPLAY_ERROR_INVALID_VALUE;
|
|
|
|
uint32_t pFrameBuf_size = pFrameBuf->size;
|
|
return CALL_EXPORT(_sceDisplayGetFrameBuf, pFrameBuf, sync, &pFrameBuf_size);
|
|
}
|
|
|
|
EXPORT(int, sceDisplayGetFrameBufInternal) {
|
|
TRACY_FUNC(sceDisplayGetFrameBufInternal);
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(SceInt32, sceDisplayGetMaximumFrameBufResolution, SceInt32 *width, SceInt32 *height) {
|
|
TRACY_FUNC(sceDisplayGetMaximumFrameBufResolution, width, height);
|
|
return CALL_EXPORT(_sceDisplayGetMaximumFrameBufResolution, width, height);
|
|
}
|
|
|
|
EXPORT(int, sceDisplayGetResolutionInfoInternal) {
|
|
TRACY_FUNC(sceDisplayGetResolutionInfoInternal);
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(SceInt32, sceDisplaySetFrameBuf, const SceDisplayFrameBuf *pFrameBuf, SceDisplaySetBufSync sync) {
|
|
TRACY_FUNC(sceDisplaySetFrameBuf, pFrameBuf, sync);
|
|
uint32_t pFrameBuf_size = 0; // In the case that pFrameBuf is actually 0 _sceDisplaySetFrameBuf will handle it, we just need this to not cause a segfault
|
|
if (pFrameBuf)
|
|
pFrameBuf_size = pFrameBuf->size;
|
|
return CALL_EXPORT(_sceDisplaySetFrameBuf, pFrameBuf, sync, &pFrameBuf_size);
|
|
}
|
|
|
|
EXPORT(int, sceDisplaySetFrameBufForCompat) {
|
|
TRACY_FUNC(sceDisplaySetFrameBufForCompat);
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceDisplaySetFrameBufInternal, uint32_t maybe_buffer_idx, uint32_t unkn, SceDisplayFrameBuf *pFrameBuf, SceDisplaySetBufSync sync) {
|
|
TRACY_FUNC(sceDisplaySetFrameBufInternal, maybe_buffer_idx, unkn, pFrameBuf, sync);
|
|
// only render for frame buffer 0 or we'll get double fps
|
|
if (maybe_buffer_idx != 0)
|
|
return 0;
|
|
|
|
return CALL_EXPORT(_sceDisplaySetFrameBuf, pFrameBuf, sync, nullptr);
|
|
}
|