| 18 |
|
|
| 19 |
|
#include "x11icon.h" |
| 20 |
|
|
| 21 |
+ |
#ifndef RAYQLEN |
| 22 |
+ |
#define RAYQLEN 50000 /* max. rays to queue before flush */ |
| 23 |
+ |
#endif |
| 24 |
+ |
|
| 25 |
|
#ifndef FEQ |
| 26 |
|
#define FEQ(a,b) ((a)-(b) <= FTINY && (a)-(b) >= -FTINY) |
| 27 |
|
#endif |
| 85 |
|
for (cp = tail; *cp && *cp != '.'; cp++) |
| 86 |
|
; |
| 87 |
|
if (cp-tail == 3 && !strncmp(tail, "x11", 3)) |
| 88 |
< |
return(TM_F_CAMERA); |
| 88 |
> |
return(TM_F_CAMERA|TM_F_NOSTDERR); |
| 89 |
|
if (cp-tail == 4 && !strncmp(tail, "x11h", 4)) |
| 90 |
< |
return(TM_F_HUMAN); |
| 90 |
> |
return(TM_F_HUMAN|TM_F_NOSTDERR); |
| 91 |
|
error(USER, "illegal driver name"); |
| 92 |
|
} |
| 93 |
|
|
| 282 |
|
dev_flush() /* flush output */ |
| 283 |
|
{ |
| 284 |
|
qtUpdate(); |
| 285 |
+ |
rayqleft = RAYQLEN; |
| 286 |
|
return(XPending(ourdisplay)); |
| 287 |
|
} |
| 288 |
|
|