X-Git-Url: http://git.maemo.org/git/?p=sdlhildon;a=blobdiff_plain;f=sdlgles%2Ftest%2Fgles1.c;fp=sdlgles%2Ftest%2Fgles1.c;h=5425ecd39beb3c545b0ae32b7607b7c75f3659b9;hp=6d844f0bdab8b5876a057bd56ba3c28e60452d3e;hb=9bbb182d4a8bc119cd76f5325de1be4c7217f2ad;hpb=c1c98c7a0952641919bb763ef5ff41692c630918 diff --git a/sdlgles/test/gles1.c b/sdlgles/test/gles1.c index 6d844f0..5425ecd 100644 --- a/sdlgles/test/gles1.c +++ b/sdlgles/test/gles1.c @@ -18,7 +18,7 @@ static SDL_Surface *screen; static SDL_GLES_Context *context; -static float box_step = 0.05f; +static float box_step = 0.025f; static const float w = 0.28f, h = 0.4f; static float x = -0.5f, y = 0.0f; @@ -76,9 +76,10 @@ int main() screen = SDL_SetVideoMode(0, 0, 16, SDL_SWSURFACE); assert(screen); + SDL_WM_SetCaption("SDLgles v1 test"); SDL_ShowCursor(SDL_DISABLE); - SDL_TimerID timer = SDL_AddTimer(50, tick, NULL); + SDL_TimerID timer = SDL_AddTimer(30, tick, NULL); assert(timer != NULL); context = SDL_GLES_CreateContext();