video_out fixes for openBor
This commit is contained in:
parent
c0649b8d24
commit
0f80805d69
|
@ -1,7 +1,9 @@
|
||||||
#include "video_out.h"
|
#include "video_out.h"
|
||||||
|
|
||||||
|
#include <Core/PS4/GPU/gpu_memory.h>
|
||||||
#include <Core/PS4/GPU/video_out_buffer.h>
|
#include <Core/PS4/GPU/video_out_buffer.h>
|
||||||
#include <Core/PS4/HLE/ErrorCodes.h>
|
#include <Core/PS4/HLE/ErrorCodes.h>
|
||||||
|
#include <Core/PS4/HLE/LibSceGnmDriver.h>
|
||||||
#include <Core/PS4/HLE/Libs.h>
|
#include <Core/PS4/HLE/Libs.h>
|
||||||
#include <Core/PS4/HLE/UserManagement/UsrMngCodes.h>
|
#include <Core/PS4/HLE/UserManagement/UsrMngCodes.h>
|
||||||
#include <Util/config.h>
|
#include <Util/config.h>
|
||||||
|
@ -15,9 +17,7 @@
|
||||||
#include "Objects/video_out_ctx.h"
|
#include "Objects/video_out_ctx.h"
|
||||||
#include "Util/Singleton.h"
|
#include "Util/Singleton.h"
|
||||||
#include "emulator.h"
|
#include "emulator.h"
|
||||||
#include <Core/PS4/GPU/gpu_memory.h>
|
|
||||||
#include "graphics_render.h"
|
#include "graphics_render.h"
|
||||||
#include <Core/PS4/HLE/LibSceGnmDriver.h>
|
|
||||||
|
|
||||||
namespace HLE::Libs::Graphics::VideoOut {
|
namespace HLE::Libs::Graphics::VideoOut {
|
||||||
|
|
||||||
|
@ -169,8 +169,7 @@ s32 PS4_SYSV_ABI sceVideoOutRegisterBuffers(s32 handle, s32 startIndex, void* co
|
||||||
|
|
||||||
// try to calculate buffer size
|
// try to calculate buffer size
|
||||||
u64 buffer_size = 0; // still calculation is probably partial or wrong :D
|
u64 buffer_size = 0; // still calculation is probably partial or wrong :D
|
||||||
if (attribute->tilingMode == 0)
|
if (attribute->tilingMode == 0) {
|
||||||
{
|
|
||||||
buffer_size = 1920 * 1088 * 4;
|
buffer_size = 1920 * 1088 * 4;
|
||||||
} else {
|
} else {
|
||||||
buffer_size = 1920 * 1080 * 4;
|
buffer_size = 1920 * 1080 * 4;
|
||||||
|
@ -207,8 +206,7 @@ s32 PS4_SYSV_ABI sceVideoOutRegisterBuffers(s32 handle, s32 startIndex, void* co
|
||||||
ctx->buffers[i + startIndex].buffer_size = buffer_size;
|
ctx->buffers[i + startIndex].buffer_size = buffer_size;
|
||||||
ctx->buffers[i + startIndex].buffer_pitch = buffer_pitch;
|
ctx->buffers[i + startIndex].buffer_pitch = buffer_pitch;
|
||||||
ctx->buffers[i + startIndex].buffer_render = static_cast<Graphics::VideoOutVulkanImage*>(
|
ctx->buffers[i + startIndex].buffer_render = static_cast<Graphics::VideoOutVulkanImage*>(
|
||||||
GPU::memoryCreateObj(
|
GPU::memoryCreateObj(0, videoOut->getGraphicCtx(), nullptr, reinterpret_cast<uint64_t>(addresses[i]), buffer_size, buffer_info));
|
||||||
0, videoOut->getGraphicCtx(), nullptr, reinterpret_cast<uint64_t>(addresses[i]), buffer_size, buffer_info));
|
|
||||||
|
|
||||||
LOG_INFO_IF(log_file_videoout, "buffers[{}] = {}\n", i + startIndex, log_hex_full(reinterpret_cast<uint64_t>(addresses[i])));
|
LOG_INFO_IF(log_file_videoout, "buffers[{}] = {}\n", i + startIndex, log_hex_full(reinterpret_cast<uint64_t>(addresses[i])));
|
||||||
}
|
}
|
||||||
|
@ -233,7 +231,8 @@ s32 PS4_SYSV_ABI sceVideoOutSubmitFlip(s32 handle, s32 bufferIndex, s32 flipMode
|
||||||
auto* ctx = videoOut->getCtx(handle);
|
auto* ctx = videoOut->getCtx(handle);
|
||||||
|
|
||||||
if (flipMode != 1) {
|
if (flipMode != 1) {
|
||||||
BREAKPOINT(); // only flipmode==1 is supported
|
// BREAKPOINT(); // only flipmode==1 is supported
|
||||||
|
LOG_TRACE_IF(log_file_videoout, "sceVideoOutSubmitFlip flipmode {}\n", bufferIndex);//openBOR needs 2 but seems to work
|
||||||
}
|
}
|
||||||
if (bufferIndex == -1) {
|
if (bufferIndex == -1) {
|
||||||
BREAKPOINT(); // blank output not supported
|
BREAKPOINT(); // blank output not supported
|
||||||
|
@ -277,7 +276,7 @@ s32 PS4_SYSV_ABI sceVideoOutGetResolutionStatus(s32 handle, SceVideoOutResolutio
|
||||||
}
|
}
|
||||||
s32 PS4_SYSV_ABI sceVideoOutOpen(SceUserServiceUserId userId, s32 busType, s32 index, const void* param) {
|
s32 PS4_SYSV_ABI sceVideoOutOpen(SceUserServiceUserId userId, s32 busType, s32 index, const void* param) {
|
||||||
PRINT_FUNCTION_NAME();
|
PRINT_FUNCTION_NAME();
|
||||||
if (userId != SCE_USER_SERVICE_USER_ID_SYSTEM) {
|
if (userId != SCE_USER_SERVICE_USER_ID_SYSTEM && userId != 0) {
|
||||||
BREAKPOINT();
|
BREAKPOINT();
|
||||||
}
|
}
|
||||||
if (busType != SCE_VIDEO_OUT_BUS_TYPE_MAIN) {
|
if (busType != SCE_VIDEO_OUT_BUS_TYPE_MAIN) {
|
||||||
|
|
Loading…
Reference in New Issue