1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

cellSubDisplay: Add some constants (#9178)

This commit is contained in:
Megamouse 2020-10-31 02:40:38 +01:00 committed by GitHub
parent 4984e87776
commit 5d55e509ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#include "stdafx.h"
#include "stdafx.h"
#include "Emu/Cell/PPUModule.h"
#include "cellSubDisplay.h"
@ -17,6 +17,7 @@ void fmt_class_string<CellSubDisplayError>::format(std::string& out, u64 arg)
STR_CASE(CELL_SUBDISPLAY_ERROR_NOT_FOUND);
STR_CASE(CELL_SUBDISPLAY_ERROR_INVALID_VALUE);
STR_CASE(CELL_SUBDISPLAY_ERROR_NOT_INITIALIZED);
STR_CASE(CELL_SUBDISPLAY_ERROR_NOT_SUPPORTED);
STR_CASE(CELL_SUBDISPLAY_ERROR_SET_SAMPLE);
STR_CASE(CELL_SUBDISPLAY_ERROR_AUDIOOUT_IS_BUSY);
STR_CASE(CELL_SUBDISPLAY_ERROR_ZERO_REGISTERED);

View File

@ -1,4 +1,4 @@
#pragma once
#pragma once
#include "Utilities/BEType.h"
@ -10,9 +10,10 @@ enum CellSubDisplayError : u32
CELL_SUBDISPLAY_ERROR_NOT_FOUND = 0x80029853,
CELL_SUBDISPLAY_ERROR_INVALID_VALUE = 0x80029854,
CELL_SUBDISPLAY_ERROR_NOT_INITIALIZED = 0x80029855,
CELL_SUBDISPLAY_ERROR_NOT_SUPPORTED = 0x80029856,
CELL_SUBDISPLAY_ERROR_SET_SAMPLE = 0x80029860,
CELL_SUBDISPLAY_ERROR_AUDIOOUT_IS_BUSY = 0x80029861,
CELL_SUBDISPLAY_ERROR_ZERO_REGISTERED = 0x80029813,
CELL_SUBDISPLAY_ERROR_ZERO_REGISTERED = 0x80029813, // = CELL_REMOTEPLAY_ERROR_ZERO_REGISTERED
};
// Different constants
@ -37,10 +38,25 @@ enum
CELL_SUBDISPLAY_0001_MEMORY_CONTAINER_SIZE = 8 * 1024 * 1024,
CELL_SUBDISPLAY_0002_MEMORY_CONTAINER_SIZE = 10 * 1024 * 1024,
CELL_SUBDISPLAY_0003_MEMORY_CONTAINER_SIZE = 10 * 1024 * 1024,
CELL_SUBDISPLAY_0003_WIDTH = 864,
CELL_SUBDISPLAY_0003_PITCH = 864,
CELL_SUBDISPLAY_0003_HEIGHT = 480,
CELL_SUBDISPLAY_NICKNAME_LEN = 256,
CELL_SUBDISPLAY_PSPID_LEN = 16,
};
// Touch
enum
{
CELL_SUBDISPLAY_TOUCH_STATUS_NONE = 0,
CELL_SUBDISPLAY_TOUCH_STATUS_PRESS = 1,
CELL_SUBDISPLAY_TOUCH_STATUS_RELEASE = 2,
CELL_SUBDISPLAY_TOUCH_STATUS_MOVE = 3,
CELL_SUBDISPLAY_TOUCH_STATUS_ABORT = 4,
CELL_SUBDISPLAY_TOUCH_MAX_TOUCH_INFO = 6,
};
struct CellSubDisplayVideoParam
{
be_t<s32> format;