HP b2600 Reference Manual page 122

Opengl 1.1 reference
Hide thumbs Also See for b2600:
Table of Contents

Advertisement

D
glDrawPixels
width height pixels are read from memory, starting at location pixels. By default, these
pixels are taken from adjacent memory locations, except that after all width pixels are
read, the read pointer is advanced to the next four-byte boundary. The four-byte row
alignment is specified by glPixelStore with argument GL_UNPACK_ALIGNMENT, and
it can be set to one, two, four, or eight bytes. Other pixel store parameters specify
different read pointer advancements, both before the first pixel is read and after all
width pixels are read. See the glPixelStore reference page for details on these options.
The width
way, based on the values of several parameters specified by glPixelTransfer and
glPixelMap. The details of these operations, as well as the target buffer into which the
pixels are drawn, are specific to the format of the pixels, as specified by format. format
can assume one of eleven symbolic values:
GL_COLOR_INDEX
Each pixel is a single value, a color index. It is converted to fixed-point format, with an
unspecified number of bits to the right of the binary point, regardless of the memory data
type. Floating-point values convert to true fixed-point values. Signed and unsigned
integer data is converted with all fraction bits set to 0. Bitmap data convert to either 0 or
1.
Each fixed-point index is then shifted left by GL_INDEX_SHIFT bits and added to
GL_INDEX_OFFSET. If GL_INDEX_SHIFT is negative, the shift is to the right. In
either case, zero bits fill otherwise unspecified bit locations in the result.
If the GL is in RGBA mode, the resulting index is converted to an RGBA pixel with the
help of the GL_PIXEL_MAP_I_TO_R, GL_PIXEL_MAP_I_TO_G,
GL_PIXEL_MAP_I_TO_B, and GL_PIXEL_MAP_I_TO_A tables. If the GL is in color
index mode, and if GL_MAP_COLOR is true, the index is replaced with the value that it
references in lookup table GL_PIXEL_MAP_I_TO_I. Whether the lookup replacement of
the index is done or not, the integer part of the index is then ANDed with 2
is the number of bits in a color index buffer.
The GL then converts the resulting indices or RGBA colors to fragments by attaching the
current raster position z coordinate and texture coordinates to each pixel, then assigning
x and y window coordinates to the nth fragment such that
x
n
y
n
where (x
like the fragments generated by rasterizing points, lines, or polygons. Texture mapping,
fog, and all the fragment operations are applied before the fragments are written to the
frame buffer.
GL_STENCIL_INDEX
Each pixel is a single value, a stencil index. It is converted to fixed-point format, with an
unspecified number of bits to the right of the binary point, regardless of the memory data
type. Floating-point values convert to true fixed-point values. Signed and unsigned
integer data is converted with all fraction bits set to 0. Bitmap data convert to either 0 or
1.
Each fixed-point index is then shifted left by GL_INDEX_SHIFT bits, and added to
GL_INDEX_OFFSET. If GL_INDEX_SHIFT is negative, the shift is to the right. In
either case, zero bits fill otherwise unspecified bit locations in the result. If
122
height pixels that are read from memory are each operated on in the same
= x
+ n mod width
r
= y
+ n/width
r
, y
) is the current raster position.These pixel fragments are then treated just
r
r
b
- 1, where b
Chapter 4

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents