mirror of
https://github.com/libretro/RetroArch.git
synced 2025-03-06 17:07:26 +00:00
Add some notes
This commit is contained in:
parent
dcf4037582
commit
e04dff82b5
gfx
@ -120,6 +120,7 @@ void d3d_make_d3dpp(void *data,
|
|||||||
{
|
{
|
||||||
d3d_video_t *d3d = (d3d_video_t*)data;
|
d3d_video_t *d3d = (d3d_video_t*)data;
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
/* TODO/FIXME - get rid of global state dependencies. */
|
||||||
global_t *global = global_get_ptr();
|
global_t *global = global_get_ptr();
|
||||||
|
|
||||||
memset(d3dpp, 0, sizeof(*d3dpp));
|
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();
|
global_t *global = global_get_ptr();
|
||||||
|
|
||||||
/* Don't support filters at the moment since they make estimations *
|
/* 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)
|
if (global->filter.filter)
|
||||||
{
|
{
|
||||||
RARCH_ERR("[video_omap]: filters are not supported\n");
|
RARCH_ERR("[video_omap]: filters are not supported\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user