X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvideo%2Fomapdss%2Fconfig.c;h=d84b862f0ae2aa0c6c13de9d1ca0fd10d154f973;hb=455c8c43b353b60ebbb70caa09ae87be49520838;hp=adedaef648f6beeacabf2be7281a847187bfcb70;hpb=0bb19c41766026c798f9c2aa9dc433a9403c8e39;p=sdl_omap.git diff --git a/src/video/omapdss/config.c b/src/video/omapdss/config.c index adedaef..d84b862 100644 --- a/src/video/omapdss/config.c +++ b/src/video/omapdss/config.c @@ -13,9 +13,6 @@ #include "omapsdl.h" -int gcfg_force_vsync; -int gcfg_force_doublebuf; - static char *sskip(char *p) { while (*p && isspace(*p)) @@ -52,7 +49,7 @@ static int check_token_eq(char **p_, const char *token) return ret; } -void omapsdl_config(void) +void omapsdl_config(struct SDL_PrivateVideoData *pdata) { char buff[256]; FILE *f; @@ -87,11 +84,15 @@ void omapsdl_config(void) continue; } else if (check_token_eq(&p, "force_vsync")) { - gcfg_force_vsync = strtol(p, NULL, 0); + pdata->cfg_force_vsync = !!strtol(p, NULL, 0); continue; } else if (check_token_eq(&p, "force_doublebuf")) { - gcfg_force_doublebuf = strtol(p, NULL, 0); + pdata->cfg_force_doublebuf = !!strtol(p, NULL, 0); + continue; + } + else if (check_token_eq(&p, "no_ts_translate")) { + pdata->cfg_no_ts_translate = !!strtol(p, NULL, 0); continue; } @@ -101,15 +102,29 @@ bad: fclose(f); } -void omapsdl_config_from_env(void) +void omapsdl_config_from_env(struct SDL_PrivateVideoData *pdata) { const char *tmp; tmp = getenv("SDL_OMAP_VSYNC"); if (tmp != NULL) - gcfg_force_vsync = strtol(tmp, NULL, 0); + pdata->cfg_force_vsync = !!strtol(tmp, NULL, 0); tmp = getenv("SDL_OMAP_FORCE_DOUBLEBUF"); if (tmp != NULL) - gcfg_force_doublebuf = strtol(tmp, NULL, 0); + pdata->cfg_force_doublebuf = !!strtol(tmp, NULL, 0); + tmp = getenv("SDL_OMAP_NO_TS_TRANSLATE"); + if (tmp != NULL) + pdata->cfg_no_ts_translate = !!strtol(tmp, NULL, 0); + tmp = getenv("SDL_OMAP_BORDER_CUT"); + if (tmp != NULL) { + int l, r, t, b; + if (sscanf(tmp, "%d,%d,%d,%d", &l, &r, &t, &b) == 4 + && l >= 0 && r >= 0 && t >= 0 && b >= 0) { + pdata->border_l = l, pdata->border_r = r; + pdata->border_t = t, pdata->border_b = b; + } + else + err("border incorrectly specified, ignored"); + } }