XSetStipple
Syntax
XSetStipple(display, gc, stipple)
Display *display;
GC gc;
Pixmap stipple;
Arguments
display
| Specifies the connection to the X server.
|
gc
| Specifies the GC.
|
stipple
| Specifies the stipple you want to set for the specified GC.
|
Description
The stipple must have a depth of one,
or a
BadMatch
error results.
XSetStipple()
can generate
BadAlloc ,
BadGC ,
BadMatch ,
and
BadPixmap
errors.
Diagnostics
BadAlloc
| The server failed to allocate the requested
source or server memory.
|
BadGC
| A value for a GContext
argument does not name a defined
GContext.
|
BadMatch
| An
InputOnly
window is used as a Drawable.
|
BadMatch
| Some argument or pair of arguments has the correct type and range but fails
to match in some other way required by the request.
|
BadPixmap
| A value for a Pixmap argument does not name a
defined Pixmap.
|
See also
XCreateGC(),
XQueryBestSize(),
XSetArcMode(),
XSetClipOrigin(),
XSetFillStyle(),
XSetFont(),
XSetLineAttributes(),
XSetState(),
XSetTile(),
XSetTSOrigin(),
"
Setting the Fill Tile and Stipple".
Christophe Tronche, [email protected]