mirror of
https://github.com/libretro/RetroArch
synced 2024-12-28 09:29:16 +00:00
51922ea5be
2934af8af0 Added Patreon sponsor link. c8f18b6f0f Getting current program only when required for vglDrawObjects. 4c5d136b0d Added directive to enable vitaShaRK usage from cmd. 4a10df3be5 Minor adjustments and bugfixes. 14a0124acf Added GL_TEXTURE_LOD_BIAS support. 40c8c6205e Added GL_NONE def and fixed glUniform4f impl. 868079c51e Added glUniform4f implementation. 0a682cbad2 Typo fix. be3ce61ae7 Added GL_DEPTH_BITS and GL_STENCIL_BITS support. 21e6d1d330 Added runtime shader compiler support. 696e40bc62 Beautify error handler code. 537b37b110 Added glUniform3fv implementation. 7dd1403015 Fixed GLenum size and added missing types defines. 0c75f27ff1 Moved to NEON optimized memcpy usage. 98951895de Added gluPerspective implementation. 23e0b0b309 Fix for vglInitExtended not working on sys app mode. 4989c33ef5 Run clang-format. 429f1c1d8a Added system mode support. 9231680d02 Initializing sceGxm before free mem checking on vglInitExtended. 091e5e7882 Added vglInitWithCustomSizes. f4c646ea78 Added vglSetParamBufferSize. 1b9a063c41 Beautify some code. 089e81efc5 Fix for duplicated symbols 789dcbf812 Typo fix in readRGBA4444. 1514a4b2cb Disabling lto due to it being broken on vitasdk with gcc 9.1. fca18d9ab7 Added support for RGBA4444 texture format. d449f12808 Added support for RGB565 texture format. git-subtree-dir: deps/vitaGL git-subtree-split: 2934af8af083a9acf598ab75233c518a251c6f0d
179 lines
5.6 KiB
C
179 lines
5.6 KiB
C
/* Copyright (C) 2010-2020 The RetroArch team
|
|
*
|
|
* ---------------------------------------------------------------------------------------
|
|
* The following license statement only applies to this file (disk_control_interface.h).
|
|
* ---------------------------------------------------------------------------------------
|
|
*
|
|
* Permission is hereby granted, free of charge,
|
|
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef __DISK_CONTROL_INTERFACE_H
|
|
#define __DISK_CONTROL_INTERFACE_H
|
|
|
|
#include <retro_common_api.h>
|
|
#include <libretro.h>
|
|
|
|
#include <boolean.h>
|
|
|
|
#include "disk_index_file.h"
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
/* Holds all all objects to operate the disk
|
|
* control interface */
|
|
typedef struct
|
|
{
|
|
bool record_enabled;
|
|
disk_index_file_t index_record;
|
|
unsigned initial_num_images;
|
|
struct retro_disk_control_ext_callback cb;
|
|
} disk_control_interface_t;
|
|
|
|
/*****************/
|
|
/* Configuration */
|
|
/*****************/
|
|
|
|
/* Set v0 disk interface callback functions */
|
|
void disk_control_set_callback(
|
|
disk_control_interface_t *disk_control,
|
|
const struct retro_disk_control_callback *cb);
|
|
|
|
/* Set v1+ disk interface callback functions */
|
|
void disk_control_set_ext_callback(
|
|
disk_control_interface_t *disk_control,
|
|
const struct retro_disk_control_ext_callback *cb);
|
|
|
|
/**********/
|
|
/* Status */
|
|
/**********/
|
|
|
|
/* Returns true if core supports basic disk
|
|
* control functionality
|
|
* - set_eject_state
|
|
* - get_eject_state
|
|
* - get_image_index
|
|
* - set_image_index
|
|
* - get_num_images */
|
|
bool disk_control_enabled(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/* Returns true if core supports disk append
|
|
* functionality
|
|
* - replace_image_index
|
|
* - add_image_index */
|
|
bool disk_control_append_enabled(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/* Returns true if core supports image
|
|
* labels
|
|
* - get_image_label */
|
|
bool disk_control_image_label_enabled(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/* Returns true if core supports setting
|
|
* initial disk index
|
|
* - set_initial_image
|
|
* - get_image_path */
|
|
bool disk_control_initial_image_enabled(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/***********/
|
|
/* Getters */
|
|
/***********/
|
|
|
|
/* Returns true if disk is currently ejected */
|
|
bool disk_control_get_eject_state(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/* Returns number of disk images registered
|
|
* by the core */
|
|
unsigned disk_control_get_num_images(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/* Returns currently selected disk image index */
|
|
unsigned disk_control_get_image_index(
|
|
disk_control_interface_t *disk_control);
|
|
|
|
/* Fetches core-provided disk image label
|
|
* (label is set to an empty string if core
|
|
* does not support image labels) */
|
|
void disk_control_get_image_label(
|
|
disk_control_interface_t *disk_control,
|
|
unsigned index, char *label, size_t len);
|
|
|
|
/***********/
|
|
/* Setters */
|
|
/***********/
|
|
|
|
/* Sets the eject state of the virtual disk tray */
|
|
bool disk_control_set_eject_state(
|
|
disk_control_interface_t *disk_control,
|
|
bool eject, bool verbosity);
|
|
|
|
/* Sets currently selected disk index
|
|
* NOTE: Will fail if disk is not currently ejected */
|
|
bool disk_control_set_index(
|
|
disk_control_interface_t *disk_control,
|
|
unsigned index, bool verbosity);
|
|
|
|
/* Increments selected disk index */
|
|
bool disk_control_set_index_next(
|
|
disk_control_interface_t *disk_control,
|
|
bool verbosity);
|
|
|
|
/* Decrements selected disk index */
|
|
bool disk_control_set_index_prev(
|
|
disk_control_interface_t *disk_control,
|
|
bool verbosity);
|
|
|
|
/* Appends specified image file to disk image list */
|
|
bool disk_control_append_image(
|
|
disk_control_interface_t *disk_control,
|
|
const char *image_path);
|
|
|
|
/*****************************/
|
|
/* 'Initial index' functions */
|
|
/*****************************/
|
|
|
|
/* Attempts to set current core's initial disk index.
|
|
* > disk_control->record_enabled will be set to
|
|
* 'false' if core does not support initial
|
|
* index functionality
|
|
* > disk_control->index_record will be loaded
|
|
* from file (if an existing record is found)
|
|
* NOTE: Must be called immediately before
|
|
* loading content */
|
|
bool disk_control_set_initial_index(
|
|
disk_control_interface_t *disk_control,
|
|
const char *content_path,
|
|
const char *dir_savefile);
|
|
|
|
/* Checks that initial index has been set correctly
|
|
* and provides user notification.
|
|
* > Sets disk_control->initial_num_images if
|
|
* if functionality is supported by core
|
|
* NOTE: Must be called immediately after
|
|
* loading content */
|
|
bool disk_control_verify_initial_index(disk_control_interface_t *disk_control);
|
|
|
|
/* Saves current disk index to file, if supported
|
|
* by current core */
|
|
bool disk_control_save_image_index(disk_control_interface_t *disk_control);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|