1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
|
/*
* $Xorg: XMultibuf.c,v 1.6 2001/02/09 02:03:49 xorgcvs Exp $
*
Copyright 1989, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*
* Authors: Jim Fulton, MIT X Consortium
*/
/* $XFree86: xc/lib/Xext/XMultibuf.c,v 1.6 2002/10/16 00:37:27 dawes Exp $ */
#define NEED_EVENTS
#define NEED_REPLIES
#include <X11/Xlibint.h>
#include <stdio.h>
#include <X11/extensions/Xext.h>
#include <X11/extensions/extutil.h>
#include <X11/extensions/multibufst.h>
static XExtensionInfo _multibuf_info_data;
static XExtensionInfo *multibuf_info = &_multibuf_info_data;
static /* const */ char *multibuf_extension_name = MULTIBUFFER_PROTOCOL_NAME;
#define MbufCheckExtension(dpy,i,val) \
XextCheckExtension (dpy, i, multibuf_extension_name, val)
#define MbufSimpleCheckExtension(dpy,i) \
XextSimpleCheckExtension (dpy, i, multibuf_extension_name)
/*****************************************************************************
* *
* private utility routines *
* *
*****************************************************************************/
/*
* find_display - locate the display info block
*/
static int close_display();
static char *error_string();
static Bool wire_to_event();
static Status event_to_wire();
static /* const */ XExtensionHooks multibuf_extension_hooks = {
NULL, /* create_gc */
NULL, /* copy_gc */
NULL, /* flush_gc */
NULL, /* free_gc */
NULL, /* create_font */
NULL, /* free_font */
close_display, /* close_display */
wire_to_event, /* wire_to_event */
event_to_wire, /* event_to_wire */
NULL, /* error */
error_string, /* error_string */
};
static /* const */ char *multibuf_error_list[] = {
"BadBuffer", /* MultibufferBadBuffer */
};
static XEXT_GENERATE_FIND_DISPLAY (find_display, multibuf_info,
multibuf_extension_name,
&multibuf_extension_hooks,
MultibufferNumberEvents, NULL)
static XEXT_GENERATE_CLOSE_DISPLAY (close_display, multibuf_info)
static XEXT_GENERATE_ERROR_STRING (error_string, multibuf_extension_name,
MultibufferNumberErrors,
multibuf_error_list)
/*
* wire_to_event - convert a wire event in network format to a C
* event structure
*/
static Bool wire_to_event (dpy, libevent, netevent)
Display *dpy;
XEvent *libevent;
xEvent *netevent;
{
XExtDisplayInfo *info = find_display (dpy);
MbufCheckExtension (dpy, info, False);
switch ((netevent->u.u.type & 0x7f) - info->codes->first_event) {
case MultibufferClobberNotify:
{
XmbufClobberNotifyEvent *ev;
xMbufClobberNotifyEvent *event;
ev = (XmbufClobberNotifyEvent *) libevent;
event = (xMbufClobberNotifyEvent *) netevent;
ev->type = event->type & 0x7f;
ev->serial = _XSetLastRequestRead(dpy,(xGenericReply *) netevent);
ev->send_event = ((event->type & 0x80) != 0);
ev->display = dpy;
ev->buffer = event->buffer;
ev->state = event->state;
return True;
}
case MultibufferUpdateNotify:
{
XmbufUpdateNotifyEvent *ev;
xMbufUpdateNotifyEvent *event;
ev = (XmbufUpdateNotifyEvent *) libevent;
event = (xMbufUpdateNotifyEvent *) netevent;
ev->type = event->type & 0x7f;
ev->serial = _XSetLastRequestRead(dpy,(xGenericReply *) netevent);
ev->send_event = ((event->type & 0x80) != 0);
ev->display = dpy;
ev->buffer = event->buffer;
return True;
}
}
return False;
}
/*
* event_to_wire - convert a C event structure to a wire event in
* network format
*/
static Status event_to_wire (dpy, libevent, netevent)
Display *dpy;
XEvent *libevent;
xEvent *netevent;
{
XExtDisplayInfo *info = find_display (dpy);
MbufCheckExtension (dpy, info, 0);
switch ((libevent->type & 0x7f) - info->codes->first_event) {
case MultibufferClobberNotify:
{
XmbufClobberNotifyEvent *ev;
xMbufClobberNotifyEvent *event;
ev = (XmbufClobberNotifyEvent *) libevent;
event = (xMbufClobberNotifyEvent *) netevent;
event->type = ev->type;
event->sequenceNumber = (ev->serial & 0xffff);
event->buffer = ev->buffer;
event->state = ev->state;
return 1;
}
case MultibufferUpdateNotify:
{
XmbufUpdateNotifyEvent *ev;
xMbufUpdateNotifyEvent *event;
ev = (XmbufUpdateNotifyEvent *) libevent;
event = (xMbufUpdateNotifyEvent *) netevent;
event->type = ev->type;
event->sequenceNumber = (ev->serial & 0xffff);
event->buffer = ev->buffer;
return 1;
}
}
return 0;
}
/*
* read_buffer_info - read Buffer Info descriptors from the net; if unable
* to allocate memory, read junk to make sure that stream is clear.
*/
#define TALLOC(type,count) ((type *) Xmalloc ((unsigned) count * sizeof(type)))
static XmbufBufferInfo *read_buffer_info (dpy, nbufs)
Display *dpy;
int nbufs;
{
xMbufBufferInfo *netbuf = TALLOC (xMbufBufferInfo, nbufs);
XmbufBufferInfo *bufinfo = NULL;
long netbytes = nbufs * SIZEOF(xMbufBufferInfo);
if (netbuf) {
_XRead (dpy, (char *) netbuf, netbytes);
bufinfo = TALLOC (XmbufBufferInfo, nbufs);
if (bufinfo) {
register XmbufBufferInfo *c;
register xMbufBufferInfo *net;
register int i;
for (i = 0, c = bufinfo, net = netbuf; i < nbufs;
i++, c++, net++) {
c->visualid = net->visualID;
c->max_buffers = net->maxBuffers;
c->depth = net->depth;
}
}
Xfree ((char *) netbuf);
} else { /* eat the data */
while (netbytes > 0) {
char dummy[256]; /* stack size vs loops tradeoff */
long nbytes = sizeof dummy;
if (nbytes > netbytes) nbytes = netbytes;
_XRead (dpy, dummy, nbytes);
netbytes -= nbytes;
}
}
return bufinfo;
}
#undef TALLOC
/*****************************************************************************
* *
* Multibuffering/stereo public interfaces *
* *
*****************************************************************************/
/*
* XmbufQueryExtension -
* Returns True if the multibuffering/stereo extension is available
* on the given display. If the extension exists, the value of the
* first event code (which should be added to the event type constants
* MultibufferClobberNotify and MultibufferUpdateNotify to get the
* actual values) is stored into event_base and the value of the first
* error code (which should be added to the error type constant
* MultibufferBadBuffer to get the actual value) is stored into
* error_base.
*/
Bool XmbufQueryExtension (dpy, event_base_return, error_base_return)
Display *dpy;
int *event_base_return, *error_base_return;
{
XExtDisplayInfo *info = find_display (dpy);
if (XextHasExtension (info)) {
*event_base_return = info->codes->first_event;
*error_base_return = info->codes->first_error;
return True;
} else {
return False;
}
}
/*
* XmbufGetVersion -
* Gets the major and minor version numbers of the extension. The return
* value is zero if an error occurs or non-zero if no error happens.
*/
Status XmbufGetVersion (dpy, major_version_return, minor_version_return)
Display *dpy;
int *major_version_return, *minor_version_return;
{
XExtDisplayInfo *info = find_display (dpy);
xMbufGetBufferVersionReply rep;
register xMbufGetBufferVersionReq *req;
MbufCheckExtension (dpy, info, 0);
LockDisplay (dpy);
MbufGetReq (MbufGetBufferVersion, req, info);
if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
UnlockDisplay (dpy);
SyncHandle ();
return 0;
}
*major_version_return = rep.majorVersion;
*minor_version_return = rep.minorVersion;
UnlockDisplay (dpy);
SyncHandle ();
return 1;
}
/*
* XmbufCreateBuffers -
* Requests that "count" buffers be created with the given update_action
* and update_hint and be associated with the indicated window. The
* number of buffers created is returned (zero if an error occurred)
* and buffers_return is filled in with that many Multibuffer identifiers.
*/
int XmbufCreateBuffers (dpy, w, count, update_action, update_hint, buffers)
Display *dpy;
Window w;
int count;
int update_action, update_hint;
Multibuffer *buffers;
{
XExtDisplayInfo *info = find_display (dpy);
xMbufCreateImageBuffersReply rep;
register xMbufCreateImageBuffersReq *req;
int result;
MbufCheckExtension (dpy, info, 0);
LockDisplay (dpy);
XAllocIDs(dpy, buffers, count);
MbufGetReq (MbufCreateImageBuffers, req, info);
req->window = w;
req->updateAction = update_action;
req->updateHint = update_hint;
req->length += count;
count <<= 2;
PackData32 (dpy, buffers, count);
if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
UnlockDisplay (dpy);
SyncHandle ();
return 0;
}
result = rep.numberBuffer;
UnlockDisplay (dpy);
SyncHandle ();
return result;
}
/*
* XmbufDestroyBuffers -
* Destroys the buffers associated with the given window.
*/
void XmbufDestroyBuffers (dpy, window)
Display *dpy;
Window window;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufDestroyImageBuffersReq *req;
MbufSimpleCheckExtension (dpy, info);
LockDisplay (dpy);
MbufGetReq (MbufDestroyImageBuffers, req, info);
req->window = window;
UnlockDisplay (dpy);
SyncHandle ();
}
/*
* XmbufDisplayBuffers -
* Displays the indicated buffers their appropriate windows within
* max_delay milliseconds after min_delay milliseconds have passed.
* No two buffers may be associated with the same window or else a Matc
* error is generated.
*/
void XmbufDisplayBuffers (dpy, count, buffers, min_delay, max_delay)
Display *dpy;
int count;
Multibuffer *buffers;
int min_delay, max_delay;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufDisplayImageBuffersReq *req;
MbufSimpleCheckExtension (dpy, info);
LockDisplay (dpy);
MbufGetReq (MbufDisplayImageBuffers, req, info);
req->minDelay = min_delay;
req->maxDelay = max_delay;
req->length += count;
count <<= 2;
PackData32 (dpy, buffers, count);
UnlockDisplay (dpy);
SyncHandle();
}
/*
* XmbufGetWindowAttributes -
* Gets the multibuffering attributes that apply to all buffers associated
* with the given window. Returns non-zero on success and zero if an
* error occurs.
*/
Status XmbufGetWindowAttributes (dpy, w, attr)
Display *dpy;
Window w;
XmbufWindowAttributes *attr;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufGetMBufferAttributesReq *req;
xMbufGetMBufferAttributesReply rep;
MbufCheckExtension (dpy, info, 0);
LockDisplay (dpy);
MbufGetReq (MbufGetMBufferAttributes, req, info);
req->window = w;
if (!_XReply (dpy, (xReply *) &rep, 0, xFalse)) {
UnlockDisplay (dpy);
SyncHandle ();
return 0;
}
attr->buffers = (Multibuffer *) NULL;
if ((attr->nbuffers = rep.length)) {
int nbytes = rep.length * sizeof(Multibuffer);
attr->buffers = (Multibuffer *) Xmalloc((unsigned) nbytes);
nbytes = rep.length << 2;
if (! attr->buffers) {
_XEatData(dpy, (unsigned long) nbytes);
UnlockDisplay(dpy);
SyncHandle();
return (0);
}
_XRead32 (dpy, (long *) attr->buffers, nbytes);
}
attr->displayed_index = rep.displayedBuffer;
attr->update_action = rep.updateAction;
attr->update_hint = rep.updateHint;
attr->window_mode = rep.windowMode;
UnlockDisplay (dpy);
SyncHandle();
return 1;
}
/*
* XmbufChangeWindowAttributes -
* Sets the multibuffering attributes that apply to all buffers associated
* with the given window. This is currently limited to the update_hint.
*/
void XmbufChangeWindowAttributes (dpy, w, valuemask, attr)
Display *dpy;
Window w;
unsigned long valuemask;
XmbufSetWindowAttributes *attr;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufSetMBufferAttributesReq *req;
MbufSimpleCheckExtension (dpy, info);
LockDisplay (dpy);
MbufGetReq (MbufSetMBufferAttributes, req, info);
req->window = w;
if ((req->valueMask = valuemask)) { /* stolen from lib/X/XWindow.c */
unsigned long values[1]; /* one per element in if stmts below */
unsigned long *v = values;
unsigned int nvalues;
if (valuemask & MultibufferWindowUpdateHint)
*v++ = attr->update_hint;
req->length += (nvalues = v - values);
nvalues <<= 2; /* watch out for macros... */
Data32 (dpy, (long *) values, (long)nvalues);
}
UnlockDisplay (dpy);
SyncHandle();
}
/*
* XmbufGetBufferAttributes -
* Gets the attributes for the indicated buffer. Returns non-zero on
* success and zero if an error occurs.
*/
Status XmbufGetBufferAttributes (dpy, b, attr)
Display *dpy;
Multibuffer b;
XmbufBufferAttributes *attr;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufGetBufferAttributesReq *req;
xMbufGetBufferAttributesReply rep;
MbufCheckExtension (dpy, info, 0);
LockDisplay (dpy);
MbufGetReq (MbufGetBufferAttributes, req, info);
req->buffer = b;
if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
UnlockDisplay (dpy);
SyncHandle ();
return 0;
}
attr->window = rep.window;
attr->event_mask = rep.eventMask;
attr->buffer_index = rep.bufferIndex;
attr->side = rep.side;
UnlockDisplay (dpy);
SyncHandle();
return 1;
}
/*
* XmbufChangeBufferAttributes -
* Sets the attributes for the indicated buffer. This is currently
* limited to the event_mask.
*/
void XmbufChangeBufferAttributes (dpy, b, valuemask, attr)
Display *dpy;
Multibuffer b;
unsigned long valuemask;
XmbufSetBufferAttributes *attr;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufSetBufferAttributesReq *req;
MbufSimpleCheckExtension (dpy, info);
LockDisplay (dpy);
MbufGetReq (MbufSetBufferAttributes, req, info);
req->buffer = b;
if ((req->valueMask = valuemask)) { /* stolen from lib/X/XWindow.c */
unsigned long values[1]; /* one per element in if stmts below */
unsigned long *v = values;
unsigned int nvalues;
if (valuemask & MultibufferBufferEventMask)
*v++ = attr->event_mask;
req->length += (nvalues = v - values);
nvalues <<= 2; /* watch out for macros... */
Data32 (dpy, (long *) values, (long)nvalues);
}
UnlockDisplay (dpy);
SyncHandle();
}
/*
* XmbufGetScreenInfo -
* Gets the parameters controlling how mono and stereo windows may be
* created on the indicated screen. The numbers of sets of visual and
* depths are returned in nmono_return and nstereo_return. If
* nmono_return is greater than zero, then mono_info_return is set to
* the address of an array of XmbufBufferInfo structures describing the
* various visuals and depths that may be used. Otherwise,
* mono_info_return is set to NULL. Similarly, stereo_info_return is
* set according to nstereo_return. The storage returned in
* mono_info_return and stereo_info_return may be released by XFree.
* If no errors are encounted, non-zero will be returned.
*/
Status XmbufGetScreenInfo (dpy, d, nmono_return, mono_info_return,
nstereo_return, stereo_info_return)
Display *dpy;
Drawable d;
int *nmono_return;
XmbufBufferInfo **mono_info_return;
int *nstereo_return;
XmbufBufferInfo **stereo_info_return;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufGetBufferInfoReq *req;
xMbufGetBufferInfoReply rep;
int nmono, nstereo;
XmbufBufferInfo *minfo, *sinfo;
MbufCheckExtension (dpy, info, 0);
LockDisplay (dpy);
MbufGetReq (MbufGetBufferInfo, req, info);
req->drawable = d;
if (!_XReply (dpy, (xReply *) &rep, 0, xFalse)) {
UnlockDisplay (dpy);
SyncHandle ();
return 0;
}
nmono = rep.normalInfo;
nstereo = rep.stereoInfo;
minfo = ((nmono > 0) ? read_buffer_info (dpy, nmono) : NULL);
sinfo = ((nstereo > 0) ? read_buffer_info (dpy, nstereo) : NULL);
/* check for bad reads indicating we need to return an error */
if ((nmono > 0 && !minfo) || (nstereo > 0 && !sinfo)) {
if (minfo) Xfree ((char *) minfo);
if (sinfo) Xfree ((char *) sinfo);
UnlockDisplay (dpy);
SyncHandle();
return 0;
}
*nmono_return = nmono;
*mono_info_return = minfo;
*nstereo_return = nstereo;
*stereo_info_return = sinfo;
UnlockDisplay (dpy);
SyncHandle();
return 1;
}
/*
* XmbufCreateStereoWindow -
* Creates a stereo window in the same way that XCreateWindow creates
* a mono window (in fact, use the same code, except for the request)
* and returns the left and right buffers that may be
*/
Window XmbufCreateStereoWindow (dpy, parent, x, y, width, height, border_width,
depth, class, visual, valuemask, attr,
leftp, rightp)
Display *dpy;
Window parent;
int x, y;
unsigned int width, height, border_width;
int depth;
unsigned int class;
Visual *visual;
unsigned long valuemask;
XSetWindowAttributes *attr;
Multibuffer *leftp, *rightp;
{
XExtDisplayInfo *info = find_display (dpy);
Window wid;
register xMbufCreateStereoWindowReq *req;
MbufCheckExtension (dpy, info, None);
LockDisplay(dpy);
MbufGetReq(MbufCreateStereoWindow, req, info);
wid = req->wid = XAllocID(dpy);
req->parent = parent;
req->left = *leftp = XAllocID (dpy);
req->right = *rightp = XAllocID (dpy);
req->x = x;
req->y = y;
req->width = width;
req->height = height;
req->borderWidth = border_width;
req->depth = depth;
req->class = class;
if (visual == CopyFromParent)
req->visual = CopyFromParent;
else
req->visual = visual->visualid;
valuemask &= (CWBackPixmap|CWBackPixel|CWBorderPixmap|
CWBorderPixel|CWBitGravity|CWWinGravity|
CWBackingStore|CWBackingPlanes|CWBackingPixel|
CWOverrideRedirect|CWSaveUnder|CWEventMask|
CWDontPropagate|CWColormap|CWCursor);
if ((req->mask = valuemask)) {
unsigned long values[32];
register unsigned long *value = values;
unsigned int nvalues;
if (valuemask & CWBackPixmap)
*value++ = attr->background_pixmap;
if (valuemask & CWBackPixel)
*value++ = attr->background_pixel;
if (valuemask & CWBorderPixmap)
*value++ = attr->border_pixmap;
if (valuemask & CWBorderPixel)
*value++ = attr->border_pixel;
if (valuemask & CWBitGravity)
*value++ = attr->bit_gravity;
if (valuemask & CWWinGravity)
*value++ = attr->win_gravity;
if (valuemask & CWBackingStore)
*value++ = attr->backing_store;
if (valuemask & CWBackingPlanes)
*value++ = attr->backing_planes;
if (valuemask & CWBackingPixel)
*value++ = attr->backing_pixel;
if (valuemask & CWOverrideRedirect)
*value++ = attr->override_redirect;
if (valuemask & CWSaveUnder)
*value++ = attr->save_under;
if (valuemask & CWEventMask)
*value++ = attr->event_mask;
if (valuemask & CWDontPropagate)
*value++ = attr->do_not_propagate_mask;
if (valuemask & CWColormap)
*value++ = attr->colormap;
if (valuemask & CWCursor)
*value++ = attr->cursor;
req->length += (nvalues = value - values);
nvalues <<= 2; /* watch out for macros... */
Data32 (dpy, (long *) values, (long)nvalues);
}
UnlockDisplay(dpy);
SyncHandle();
return wid;
}
void XmbufClearBufferArea (dpy, buffer, x, y, width, height, exposures)
Display *dpy;
Multibuffer buffer;
int x, y;
unsigned int width, height;
Bool exposures;
{
XExtDisplayInfo *info = find_display (dpy);
register xMbufClearImageBufferAreaReq *req;
MbufSimpleCheckExtension (dpy, info);
LockDisplay (dpy);
MbufGetReq (MbufClearImageBufferArea, req, info);
req->buffer = buffer;
req->x = x;
req->y = y;
req->width = width;
req->height = height;
req->exposures = exposures;
UnlockDisplay (dpy);
SyncHandle();
}
|