Wed Oct 6 17:38:58 PDT 1999

(Raster)

turn off draw queue for ipc imageclass draws...


SVN revision: 695
This commit is contained in:
Carsten Haitzler 1999-10-06 21:22:02 +00:00
parent 9f50323489
commit 0d6c65dad0
2 changed files with 14 additions and 1 deletions

View File

@ -3157,3 +3157,10 @@ Wed Oct 6 16:44:32 PDT 1999
minor change in config.c - if you can't find ROOT_IMAGE menustyle, go back to
default in dirscan menus. Also changed the ROOT_IMAGE menustyle to 20 length
in brushed metal
-------------------------------------------------------------------------------
Wed Oct 6 17:38:58 PDT 1999
(Raster)
turn off draw queue for ipc imageclass draws...

View File

@ -1616,7 +1616,7 @@ IPC_ActionClass(char *params, Client * c)
void
IPC_ImageClass(char *params, Client * c)
{
char pq;
char buf[FILEPATH_LEN_MAX];
buf[0] = 0;
@ -1738,7 +1738,10 @@ IPC_ImageClass(char *params, Client * c)
w = (int)strtol(atword(params, 5), (char **)NULL, 0);
h = (int)strtol(hptr, (char **)NULL, 0);
}
pq = queue_up;
queue_up = 0;
IclassApply(iclass, win, w, h, 0, 0, st, 0);
queue_up = pq;
}
}
else if (!strcmp(param2, "apply_copy"))
@ -1770,7 +1773,10 @@ IPC_ImageClass(char *params, Client * c)
{
w = (int)strtol(atword(params, 5), (char **)NULL, 0);
h = (int)strtol(hptr, (char **)NULL, 0);
pq = queue_up;
queue_up = 0;
IclassApplyCopy(iclass, win, w, h, 0, 0, st, &pmap, &mask);
queue_up = pq;
Esnprintf(buf, sizeof(buf), "0x%08x 0x%08x", pmap, mask);
}
}