Gallium 3D: loadable softpipe driver

git-svn-id: svn://kolibrios.org@3807 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge) 2013-07-11 10:20:05 +00:00
parent 221e4dd488
commit b4a333c297

View File

@ -120,7 +120,7 @@ graw_main_loop(void)
while(1) while(1)
{ {
ev = wait_for_event(100); ev = wait_for_event(2);
switch(ev) switch(ev)
{ {
@ -141,9 +141,11 @@ graw_main_loop(void)
if( key.code == 0x1b) if( key.code == 0x1b)
return; return;
continue; continue;
default:
continue;
}; };
if (graw.draw)
{
graw.draw();
}
}; };
} }