Add some notes

This commit is contained in:
twinaphex 2015-05-20 23:04:15 +02:00
parent dcf4037582
commit e04dff82b5
2 changed files with 6 additions and 1 deletions

View File

@ -120,6 +120,7 @@ void d3d_make_d3dpp(void *data,
{
d3d_video_t *d3d = (d3d_video_t*)data;
settings_t *settings = config_get_ptr();
/* TODO/FIXME - get rid of global state dependencies. */
global_t *global = global_get_ptr();
memset(d3dpp, 0, sizeof(*d3dpp));

View File

@ -926,7 +926,11 @@ static void *omap_gfx_init(const video_info_t *video,
global_t *global = global_get_ptr();
/* Don't support filters at the moment since they make estimations *
* on the maximum used resolution difficult. */
* on the maximum used resolution difficult.
*
* TODO/FIXME -we can't have global state dependencies
* in video drivers, please refactor and do away with this check.
* */
if (global->filter.filter)
{
RARCH_ERR("[video_omap]: filters are not supported\n");