mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Add some notes
This commit is contained in:
parent
dcf4037582
commit
e04dff82b5
2 changed files with 6 additions and 1 deletions
|
@ -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));
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue