Doxygen: Amend minor issues (#2593)
Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
This commit is contained in:
parent
b250ce21b9
commit
0cb52ee74a
18 changed files with 31 additions and 23 deletions
|
@ -52,7 +52,7 @@ private:
|
|||
|
||||
/**
|
||||
* This holds the full directory path for this archive, it is only set after a successful call
|
||||
* to Open, this is formed as <base extsavedatapath>/<type>/<high>/<low>.
|
||||
* to Open, this is formed as `<base extsavedatapath>/<type>/<high>/<low>`.
|
||||
* See GetExtSaveDataPath for the code that extracts this data from an archive path.
|
||||
*/
|
||||
std::string mount_point;
|
||||
|
|
|
@ -16,8 +16,8 @@ public:
|
|||
|
||||
/**
|
||||
* Creates a camera object based on the configuration string.
|
||||
* @params config Configuration string to create the camera. The implementation can decide the
|
||||
* meaning of this string.
|
||||
* @param config Configuration string to create the camera. The implementation can decide the
|
||||
* meaning of this string.
|
||||
* @returns a unique_ptr to the created camera object.
|
||||
*/
|
||||
virtual std::unique_ptr<CameraInterface> Create(const std::string& config) const = 0;
|
||||
|
|
|
@ -230,6 +230,7 @@ static void GdbHexToMem(u8* dest, const u8* src, size_t len) {
|
|||
* Convert a u32 into a gdb-formatted hex string.
|
||||
*
|
||||
* @param dest Pointer to buffer to store output hex string characters.
|
||||
* @param v Value to convert.
|
||||
*/
|
||||
static void IntToGdbHex(u8* dest, u32 v) {
|
||||
for (int i = 0; i < 8; i += 2) {
|
||||
|
|
|
@ -72,8 +72,8 @@ union Header {
|
|||
* through modifications and checks by the kernel.
|
||||
* The translate parameters are described by headers generated with the IPC::*Desc functions.
|
||||
*
|
||||
* @note While #normal_params_size is equivalent to the number of normal parameters,
|
||||
* #translate_params_size includes the size occupied by the translate parameters headers.
|
||||
* @note While @p normal_params_size is equivalent to the number of normal parameters,
|
||||
* @p translate_params_size includes the size occupied by the translate parameters headers.
|
||||
*/
|
||||
inline u32 MakeHeader(u16 command_id, unsigned int normal_params_size,
|
||||
unsigned int translate_params_size) {
|
||||
|
|
|
@ -45,7 +45,8 @@ public:
|
|||
|
||||
/**
|
||||
* Creates a pair of ServerSession and an associated ClientSession.
|
||||
* @param name Optional name of the ports
|
||||
* @param name Optional name of the ports.
|
||||
* @param hle_handler Optional HLE handler for this server session.
|
||||
* @return The created session tuple
|
||||
*/
|
||||
static SessionPair CreateSessionPair(
|
||||
|
|
|
@ -518,7 +518,7 @@ void FlipImage(Service::Interface* self);
|
|||
void SetDetailSize(Service::Interface* self);
|
||||
|
||||
/**
|
||||
* Sets camera resolution from preset resolution parameters. .
|
||||
* Sets camera resolution from preset resolution parameters.
|
||||
* Inputs:
|
||||
* 0: 0x001F00C0
|
||||
* 1: u8 selected camera
|
||||
|
|
|
@ -119,10 +119,10 @@ static ResultCode WriteHWRegs(u32 base_address, u32 size_in_bytes, VAddr data_va
|
|||
* Updates sequential GSP GPU hardware registers using parallel arrays of source data and masks.
|
||||
* For each register, the value is updated only where the mask is high
|
||||
*
|
||||
* @param base_address The address of the first register in the sequence
|
||||
* @param base_address The address of the first register in the sequence
|
||||
* @param size_in_bytes The number of registers to update (size of data)
|
||||
* @param data A pointer to the source data to use for updates
|
||||
* @param masks A pointer to the masks
|
||||
* @param data_vaddr A virtual address to the source data to use for updates
|
||||
* @param masks_vaddr A virtual address to the masks
|
||||
* @return RESULT_SUCCESS if the parameters are valid, error code otherwise
|
||||
*/
|
||||
static ResultCode WriteHWRegsWithMask(u32 base_address, u32 size_in_bytes, VAddr data_vaddr,
|
||||
|
|
|
@ -57,7 +57,7 @@ public:
|
|||
* @param is_crs true if the module itself is the static module
|
||||
* @returns ResultCode RESULT_SUCCESS on success, otherwise error code.
|
||||
*/
|
||||
ResultCode Rebase(VAddr crs_address, u32 cro_size, VAddr data_segment_addresss,
|
||||
ResultCode Rebase(VAddr crs_address, u32 cro_size, VAddr data_segment_address,
|
||||
u32 data_segment_size, VAddr bss_segment_address, u32 bss_segment_size,
|
||||
bool is_crs);
|
||||
|
||||
|
@ -102,7 +102,7 @@ public:
|
|||
/**
|
||||
* Registers this module and adds it to the module list.
|
||||
* @param crs_address the virtual address of the static module
|
||||
* @auto_link whether to register as an auto link module
|
||||
* @param auto_link whether to register as an auto link module
|
||||
*/
|
||||
void Register(VAddr crs_address, bool auto_link);
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ FileType IdentifyFile(const std::string& file_name);
|
|||
* @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine
|
||||
* a filetype, and will never return FileType::Error.
|
||||
*/
|
||||
FileType GuessFromExtension(const std::string& extension_);
|
||||
FileType GuessFromExtension(const std::string& extension);
|
||||
|
||||
/**
|
||||
* Convert a FileType into a string which can be displayed to the user.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue