Add documentation for RETRO_ENVIRONMENT_GET_AUDIO_VIDEO_ENABLE to the header file

This commit is contained in:
Dwedit 2018-03-23 16:33:51 -05:00
parent 575265ff06
commit fbd4900031

View File

@ -1114,6 +1114,14 @@ struct retro_led_interface
};
#define RETRO_ENVIRONMENT_GET_AUDIO_VIDEO_ENABLE (47 | RETRO_ENVIRONMENT_EXPERIMENTAL)
/* int * --
* Queries the frontend if audio and video are enabled or not.
* If not enabled, the frontend will discard the audio or video,
* so the core may decide to skip producing audio or video.
* Bit 0 (value 1) is set if Video is enabled,
* Bit 1 (value 2) is set if Audio is enabled.
* Other bits are reserved for future use.
*/
#define RETRO_ENVIRONMENT_GET_HW_RENDER_INTERFACE (41 | RETRO_ENVIRONMENT_EXPERIMENTAL)
/* const struct retro_hw_render_interface ** --