mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
420b7913d4
2820ab0b51 Merge pull request #1076 from KhronosGroup/bitcast-pre-330-glsl 63bcbd511e GLSL: Need extension to use bitcast on GLSL < 330. 9f3bebe3d0 Merge pull request #1075 from lifpan/master b11c20fc1d Remove unreasonable assertion for OpTypeImage Sampled parameter. 1a592b7c0f Merge pull request #1067 from cdavis5e/msl-scalar-block-layout 28454facbb MSL: Handle packed matrices. ea5c0ed82f MSL: Fix alignment of packed types. 44f688bf0b Merge pull request #1070 from KhronosGroup/fix-1066 25c74b324e Forget loop variable enables after emitting block chain. 6b010e0cbc Merge pull request #1069 from KhronosGroup/fix-1053 f6f849397e MSL: Re-roll array expressions in initializers. e5fa7edfd6 MSL: Support scalar block layout. git-subtree-dir: deps/SPIRV-Cross git-subtree-split: 2820ab0b51bf5e4187435d904b34e762b988f48b
135 lines
4.6 KiB
C
135 lines
4.6 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __DYNAMIC_H
|
|
#define __DYNAMIC_H
|
|
|
|
#include <boolean.h>
|
|
#include <retro_common_api.h>
|
|
#include <libretro.h>
|
|
|
|
#include "core_type.h"
|
|
|
|
RETRO_BEGIN_DECLS
|
|
|
|
/**
|
|
* libretro_get_system_info:
|
|
* @path : Path to libretro library.
|
|
* @info : System info information.
|
|
* @load_no_content : If true, core should be able to auto-start
|
|
* without any content loaded.
|
|
*
|
|
* Gets system info from an arbitrary lib.
|
|
* The struct returned must be freed as strings are allocated dynamically.
|
|
*
|
|
* Returns: true (1) if successful, otherwise false (0).
|
|
**/
|
|
bool libretro_get_system_info(const char *path,
|
|
struct retro_system_info *info, bool *load_no_content);
|
|
|
|
/**
|
|
* libretro_free_system_info:
|
|
* @info : Pointer to system info information.
|
|
*
|
|
* Frees system information.
|
|
**/
|
|
void libretro_free_system_info(struct retro_system_info *info);
|
|
|
|
const struct retro_subsystem_info *libretro_find_subsystem_info(
|
|
const struct retro_subsystem_info *info,
|
|
unsigned num_info, const char *ident);
|
|
|
|
/**
|
|
* libretro_find_controller_description:
|
|
* @info : Pointer to controller info handle.
|
|
* @id : Identifier of controller to search
|
|
* for.
|
|
*
|
|
* Search for a controller of type @id in @info.
|
|
*
|
|
* Returns: controller description of found controller on success,
|
|
* otherwise NULL.
|
|
**/
|
|
const struct retro_controller_description *
|
|
libretro_find_controller_description(
|
|
const struct retro_controller_info *info, unsigned id);
|
|
|
|
/**
|
|
* rarch_environment_cb:
|
|
* @cmd : Identifier of command.
|
|
* @data : Pointer to data.
|
|
*
|
|
* Environment callback function implementation.
|
|
*
|
|
* Returns: true (1) if environment callback command could
|
|
* be performed, otherwise false (0).
|
|
**/
|
|
bool rarch_environment_cb(unsigned cmd, void *data);
|
|
|
|
struct retro_core_t
|
|
{
|
|
void (*retro_init)(void);
|
|
void (*retro_deinit)(void);
|
|
unsigned (*retro_api_version)(void);
|
|
void (*retro_get_system_info)(struct retro_system_info*);
|
|
void (*retro_get_system_av_info)(struct retro_system_av_info*);
|
|
void (*retro_set_environment)(retro_environment_t);
|
|
void (*retro_set_video_refresh)(retro_video_refresh_t);
|
|
void (*retro_set_audio_sample)(retro_audio_sample_t);
|
|
void (*retro_set_audio_sample_batch)(retro_audio_sample_batch_t);
|
|
void (*retro_set_input_poll)(retro_input_poll_t);
|
|
void (*retro_set_input_state)(retro_input_state_t);
|
|
void (*retro_set_controller_port_device)(unsigned, unsigned);
|
|
void (*retro_reset)(void);
|
|
void (*retro_run)(void);
|
|
size_t (*retro_serialize_size)(void);
|
|
bool (*retro_serialize)(void*, size_t);
|
|
bool (*retro_unserialize)(const void*, size_t);
|
|
void (*retro_cheat_reset)(void);
|
|
void (*retro_cheat_set)(unsigned, bool, const char*);
|
|
bool (*retro_load_game)(const struct retro_game_info*);
|
|
bool (*retro_load_game_special)(unsigned,
|
|
const struct retro_game_info*, size_t);
|
|
void (*retro_unload_game)(void);
|
|
unsigned (*retro_get_region)(void);
|
|
void *(*retro_get_memory_data)(unsigned);
|
|
size_t (*retro_get_memory_size)(unsigned);
|
|
|
|
unsigned poll_type;
|
|
bool inited;
|
|
bool symbols_inited;
|
|
bool game_loaded;
|
|
bool input_polled;
|
|
bool has_set_input_descriptors;
|
|
uint64_t serialization_quirks_v;
|
|
};
|
|
|
|
bool libretro_get_shared_context(void);
|
|
|
|
/* Arbitrary twenty subsystems limite */
|
|
#define SUBSYSTEM_MAX_SUBSYSTEMS 20
|
|
/* Arbitrary 10 roms for each subsystem limit */
|
|
#define SUBSYSTEM_MAX_SUBSYSTEM_ROMS 10
|
|
|
|
extern struct retro_subsystem_info subsystem_data[SUBSYSTEM_MAX_SUBSYSTEMS];
|
|
extern struct retro_subsystem_rom_info subsystem_data_roms[SUBSYSTEM_MAX_SUBSYSTEMS][SUBSYSTEM_MAX_SUBSYSTEM_ROMS];
|
|
extern unsigned subsystem_current_count;
|
|
|
|
RETRO_END_DECLS
|
|
|
|
#endif
|