mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +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
153 lines
4.8 KiB
C
153 lines
4.8 KiB
C
/* Copyright (C) 2010-2019 The RetroArch team
|
|
*
|
|
* ---------------------------------------------------------------------------------------
|
|
* The following license statement only applies to this file (core_updater_list.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 __CORE_UPDATER_LIST_H
|
|
#define __CORE_UPDATER_LIST_H
|
|
|
|
#include <retro_common_api.h>
|
|
#include <libretro.h>
|
|
|
|
#include <lists/string_list.h>
|
|
|
|
#include <boolean.h>
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
/* Default maximum number of entries in
|
|
* a core updater list */
|
|
#define CORE_UPDATER_LIST_SIZE 9999
|
|
|
|
/* Holds all date info for a core file
|
|
* on the buildbot */
|
|
typedef struct
|
|
{
|
|
unsigned year;
|
|
unsigned month;
|
|
unsigned day;
|
|
} core_updater_list_date_t;
|
|
|
|
/* Holds all info related to a core
|
|
* file on the buildbot */
|
|
typedef struct
|
|
{
|
|
char *remote_filename;
|
|
char *remote_core_path;
|
|
char *local_core_path;
|
|
char *local_info_path;
|
|
char *display_name;
|
|
char *description;
|
|
struct string_list *licenses_list;
|
|
bool is_experimental;
|
|
uint32_t crc;
|
|
core_updater_list_date_t date;
|
|
} core_updater_list_entry_t;
|
|
|
|
/* Prevent direct access to core_updater_list_t
|
|
* members */
|
|
typedef struct core_updater_list core_updater_list_t;
|
|
|
|
/**************************************/
|
|
/* Initialisation / De-Initialisation */
|
|
/**************************************/
|
|
|
|
/* Creates a new, empty core updater list with a
|
|
* maximum number of 'max_size' entries.
|
|
* Returns a handle to a new core_updater_list_t object
|
|
* on success, otherwise returns NULL. */
|
|
core_updater_list_t *core_updater_list_init(size_t max_size);
|
|
|
|
/* Resets (removes all entries of) specified core
|
|
* updater list */
|
|
void core_updater_list_reset(core_updater_list_t *core_list);
|
|
|
|
/* Frees specified core updater list */
|
|
void core_updater_list_free(core_updater_list_t *core_list);
|
|
|
|
/***************/
|
|
/* Cached List */
|
|
/***************/
|
|
|
|
/* Creates a new, empty cached core updater list
|
|
* (i.e. 'global' list).
|
|
* Returns false in the event of an error. */
|
|
bool core_updater_list_init_cached(size_t max_size);
|
|
|
|
/* Fetches cached core updater list */
|
|
core_updater_list_t *core_updater_list_get_cached(void);
|
|
|
|
/* Frees cached core updater list */
|
|
void core_updater_list_free_cached(void);
|
|
|
|
/***********/
|
|
/* Getters */
|
|
/***********/
|
|
|
|
/* Returns number of entries in core updater list */
|
|
size_t core_updater_list_size(core_updater_list_t *core_list);
|
|
|
|
/* Returns maximum allowed number of entries in core
|
|
* updater list */
|
|
size_t core_updater_list_capacity(core_updater_list_t *core_list);
|
|
|
|
/* Fetches core updater list entry corresponding
|
|
* to the specified entry index.
|
|
* Returns false if index is invalid. */
|
|
bool core_updater_list_get_index(
|
|
core_updater_list_t *core_list,
|
|
size_t idx,
|
|
const core_updater_list_entry_t **entry);
|
|
|
|
/* Fetches core updater list entry corresponding
|
|
* to the specified remote core filename.
|
|
* Returns false if core is not found. */
|
|
bool core_updater_list_get_filename(
|
|
core_updater_list_t *core_list,
|
|
const char *remote_filename,
|
|
const core_updater_list_entry_t **entry);
|
|
|
|
/* Fetches core updater list entry corresponding
|
|
* to the specified core.
|
|
* Returns false if core is not found. */
|
|
bool core_updater_list_get_core(
|
|
core_updater_list_t *core_list,
|
|
const char *local_core_path,
|
|
const core_updater_list_entry_t **entry);
|
|
|
|
/***********/
|
|
/* Setters */
|
|
/***********/
|
|
|
|
/* Reads the contents of a buildbot core list
|
|
* network request into the specified
|
|
* core_updater_list_t object.
|
|
* Returns false in the event of an error. */
|
|
bool core_updater_list_parse_network_data(
|
|
core_updater_list_t *core_list,
|
|
const char *path_dir_libretro,
|
|
const char *path_libretro_info,
|
|
const char *network_buildbot_url,
|
|
const char *data, size_t len);
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|