pulseaudio: fix dependencies for openssl-3
[oi-userland.git] / components / x11 / libXext / srcs / man / XReadScreen.man
blob1ebc57fbe2c04cf794dd7eafe2a615a8bf5ac77e
1 .\" Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
2 .\"
3 .\" Permission is hereby granted, free of charge, to any person obtaining a
4 .\" copy of this software and associated documentation files (the "Software"),
5 .\" to deal in the Software without restriction, including without limitation
6 .\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 .\" and/or sell copies of the Software, and to permit persons to whom the
8 .\" Software is furnished to do so, subject to the following conditions:
9 .\"
10 .\" The above copyright notice and this permission notice (including the next
11 .\" paragraph) shall be included in all copies or substantial portions of the
12 .\" Software.
13 .\"
14 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 .\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 .\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17 .\" THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 .\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 .\" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 .\" DEALINGS IN THE SOFTWARE.
21 .\"
22 .TH XReadScreen __libmansuffix__ __xorgversion__ "X FUNCTIONS"
23 .IX "XReadScreen" "" "\f3XReadScreen\f1(3) \(em returns the displayed colors in a rectangle of the screen.
24 .SH NAME
25 XReadScreen \- returns the displayed colors in a rectangle of the screen
26 .SH SYNOPSIS
27 .LP
28 \&#include <X11/extensions/transovl.h>
30 .IP \f3XImage *\f1
31 .B XReadScreen
32 .B (Display
33 .I *display,
34 .B Window
35 .I w,
36 .B int
37 .I x,
38 .B int
39 .I y,
40 .B unsigned int
41 .I width,
42 .B unsigned int
43 .I height,
44 .B Bool
45 .I includeCursor)
46 .SH Arguments
47 .TP
48 .I display
49 Specifies the connection to the X server.
50 .TP
51 .I w
52 Specifies the window from whose screen the data is read.
53 .TP
54 .I x, y
55 Specify the X and Y coordinates of the upper-left corner
56 of the rectangle relative to the origin of the window
57 .I w.
58 .TP
59 .I width, height
60 Specify the width and height of the rectangle.
61 .TP
62 .I includeCursor
63 Specifies whether the cursor image is to be included in the colors returned.
64 .SH DESCRIPTION
65 This routine provides access to the colors displayed on the screen of the given
66 window.  On some types of advanced display devices, the displayed colors can be
67 a composite of the data contained in several different frame stores and these
68 frame stores can be of different depth and visual types.
69 .LP
70 In addition, there can be overlay/underlay window pairs in which part of the
71 underlay is visible beneath the overlay.  Because the data returned by
72 .B XGetImage
73 is undefined for portions of the rectangle that have different depths,
74 .B XGetImage
75 is inadequate to return a picture of the what user is actually seeing on the
76 screen.  In addition,
77 .B XGetImage
78 cannot composite pixel information for an overlay/underlay window pair because
79 the pixel information lies in different drawables.
80 .B XReadScreen
81 addresses these problems.
82 .LP
83 Rather than returning pixel information,
84 .B XReadScreen
85 returns color information-the actual displayed colors visible on the screen.
86 It returns the color information from any window within the boundaries of the
87 specified rectangle.  Unlike
88 .B XGetImage,
89 the returned contents of visible regions of inferior or overlapping windows of
90 a different depth than the specified window's depth are not undefined.
91 Instead, the actual displayed colors for these windows is returned.
92 .LP
93 \f3Note:\f1 The colors returned are the ones that would be displayed if an
94 unlimited number of hardware color LUTs were available on the screen.  Thus, the
95 colors returned are the theoretical display colors.  If colormap flashing is
96 present on the screen because there aren't enough hardware color LUTs to
97 display all of the software colormaps simultaneously, the returned colors may
98 be different from the colors that are actually displayed.
99 .LP
101 .I w
102 is an overlay window, the overlay color information is returned everywhere
103 there is opaque paint in the specified rectangle.  The color information of
104 the underlay is returned everywhere there is transparent paint in the overlay.
105 In general, since this underlay can be an overlay window containing transparent
106 paint, the color information for a coordinate (x, y) which contains transparent
107 paint is the youngest non-inferior that has opaque paint at (x, y).
109 The color data is returned as an
110 .B XImage.
111 The returned image has the same width and height as the arguments specified.
112 The format of the image is
113 .B ZPixmap.
114 The depth of the image is 24 and the bits_per_pixel is 32.
115 The most significant 8 bits of color information for each color channel
116 (red, green blue) will be returned in the bit positions defined by
117 .I red_mask,
118 .I green_mask,
120 .I blue_mask
121 in the
122 .B XImage.
123 The values of the following attributes of the
124 .B XImage
125 are server dependent:
126 .I byte_order, bitmap_unit,
127 .I bitmap_bit_order,
128 .I bitmap_pad,
129 .I bytes_per_line,
130 .I red_mask,
131 .I green_mask,
132 .I blue_mask.
135 .I includeCursor
137 .SB True,
138 the cursor image is included in the returned colors.  Otherwise, it is excluded.
140 Note that the borders of the argument window (and other windows) can be included
141 and read with this request.
143 If a problem occurs,
144 .B XReadScreen
145 returns NULL.