GLPIXELSTORE


HOME

GLPIXELSTORE

NAME
C SPECIFICATION
PARAMETERS
DESCRIPTION
NOTES
ERRORS
ASSOCIATED GETS
SEE ALSO

NAME

glPixelStoref, glPixelStorei − set pixel storage modes

C SPECIFICATION

void glPixelStoref( GLenum pname,

GLfloat param )

void glPixelStorei( GLenum pname,

GLint param )

PARAMETERS

pname

Specifies the symbolic name of the parameter to be set. Six values affect the packing of pixel data into memory: GL_PACK_SWAP_BYTES, GL_PACK_LSB_FIRST, GL_PACK_ROW_LENGTH, GL_PACK_IMAGE_HEIGHT, GL_PACK_SKIP_PIXELS, GL_PACK_SKIP_ROWS, GL_PACK_SKIP_IMAGES, and GL_PACK_ALIGNMENT. Six more affect the unpacking of pixel data from memory: GL_UNPACK_SWAP_BYTES, GL_UNPACK_LSB_FIRST, GL_UNPACK_ROW_LENGTH, GL_UNPACK_IMAGE_HEIGHT, GL_UNPACK_SKIP_PIXELS, GL_UNPACK_SKIP_ROWS, GL_UNPACK_SKIP_IMAGES, and GL_UNPACK_ALIGNMENT.

param

Specifies the value that pname is set to.

DESCRIPTION

glPixelStore sets pixel storage modes that affect the operation of subsequent glDrawPixels and glReadPixels as well as the unpacking of polygon stipple patterns (see glPolygonStipple), bitmaps (see glBitmap), texture patterns (see glTexImage1D, glTexImage2D, glTexImage3D, glTexSubImage1D, glTexSubImage2D, glTexSubImage3D). Additionally, if the GL_ARB_imaging extension is supported, pixle storage modes affect convlution filters (see glConvolutionFilter1D, glConvolutionFilter2D, and glSeparableFilter2D, color table (see glColorTable, and glColorSubTable, and unpacking histogram (See glHistogram), and minmax (See glMinmax) data.

pname is a symbolic constant indicating the parameter to be set, and param is the new value. Six of the twelve storage parameters affect how pixel data is returned to client memory. They are as follows:
GL_PACK_SWAP_BYTES

If true, byte ordering for multibyte color components, depth components, color indices, or stencil indices is reversed. That is, if a four-byte component consists of bytes $b sub 0$, $b sub 1$, $b sub 2$, $b sub 3$, it is stored in memory as $b sub 3$, $b sub 2$, $b sub 1$, $b sub 0$ if GL_PACK_SWAP_BYTES is true. GL_PACK_SWAP_BYTES has no effect on the memory order of components within a pixel, only on the order of bytes within components or indices. For example, the three components of a GL_RGB pixel are always stored with red first, green second, and blue third, regardless of the value of GL_PACK_SWAP_BYTES.

GL_PACK_LSB_FIRST

If true, bits are ordered within a byte from least significant to most significant; otherwise, the first bit in each byte is the most significant one. This parameter is significant for bitmap data only.

GL_PACK_ROW_LENGTH

If greater than 0, GL_PACK_ROW_LENGTH defines the number of pixels in a row. If the first pixel of a row is placed at location $p$ in memory, then the location of the first pixel of the next row is obtained by skipping

$k ~=~~ left { ^ lpile { n l above {a over s left ceiling { s n l } over a right ceiling}} ~~ lpile {s ~>=~ a above s ~<~ a }$

components or indices, where $n$ is the number of components or indices in a pixel, $l$ is the number of pixels in a row (GL_PACK_ROW_LENGTH if it is greater than 0, the $width$ argument to the pixel routine otherwise), $a$ is the value of GL_PACK_ALIGNMENT, and $s$ is the size, in bytes, of a single component (if $ a < s$, then it is as if $a ~=~ s$). In the case of 1-bit values, the location of the next row is obtained by skipping

$k ~=~ 8 a left ceiling { n l } over { 8 a } ^ right ceiling$

components or indices.

The word component in this description refers to the nonindex values red, green, blue, alpha, and depth. Storage GL_RGB, for example, has three components per pixel: first red, then green, and finally blue.

GL_PACK_IMAGE_HEIGHT

If greater than 0, GL_PACK_IMAGE_HEIGHT defines the number of pixels in an image three-dimensional texture volume. Where ‘‘image’’ is defined by all pixels sharing the same third dimension index. If the first pixel of a row is placed at location $p$ in memory, then the location of the first pixel of the next row is obtained by skipping

$k ~=~~ left { ~ lpile { n l h above {a over s left ceiling { s n l h } over a ^ right ceiling}} ~~ lpile {s ~>=~ a above s ~<~ a }$

components or indices, where $n$ is the number of components or indices in a pixel, $l$ is the number of pixels in a row (GL_PACK_ROW_LENGTH if it is greater than 0, the $width$ argument to glTexImage3d otherwise), $h$ is the number of rows in a pixel image (GL_PACK_IMAGE_HEIGHT if it is greater than 0, the $height$ argument to the glTexImage3D routine otherwise), $a$ is the value of GL_PACK_ALIGNMENT, and $s$ is the size, in bytes, of a single component (if $ a < s$, then it is as if $a = s$).

The word component in this description refers to the nonindex values red, green, blue, alpha, and depth. Storage GL_RGB, for example, has three components per pixel: first red, then green, and finally blue.

GL_PACK_SKIP_PIXELS, GL_PACK_SKIP_ROWS, and GL_PACK_SKIP_IMAGES

These values are provided as a convenience to the programmer; they provide no functionality that cannot be duplicated simply by incrementing the pointer passed to glReadPixels. Setting GL_PACK_SKIP_PIXELS to $i$ is equivalent to incrementing the pointer by $i n$ components or indices, where $n$ is the number of components or indices in each pixel. Setting GL_PACK_SKIP_ROWS to $j$ is equivalent to incrementing the pointer by $j m$ components or indices, where $m$ is the number of components or indices per row, as just computed in the GL_PACK_ROW_LENGTH section. Setting GL_PACK_SKIP_IMAGES to $k$ is equivalent to incrementing the pointer by $k p$, where $p$ is the number of components or indices per image, as computed in the GL_PACK_IMAGE_HEIGHT section.

GL_PACK_ALIGNMENT

Specifies the alignment requirements for the start of each pixel row in memory. The allowable values are 1 (byte-alignment), 2 (rows aligned to even-numbered bytes), 4 (word-alignment), and 8 (rows start on double-word boundaries).

The other six of the twelve storage parameters affect how pixel data is read from client memory. These values are significant for glDrawPixels, glTexImage1D, glTexImage2D, glTexImage3D, glTexSubImage1D, glTexSubImage2D, glTexSubImage3D, glBitmap, and glPolygonStipple.

Additionally, if the GL_ARB_imaging extension is supported, glColorTable, glColorSubTable, glConvolutionFilter1D, glConvolutionFilter2D, and glSeparableFilter2D. They are as follows:
GL_UNPACK_SWAP_BYTES

If true, byte ordering for multibyte color components, depth components, color indices, or stencil indices is reversed. That is, if a four-byte component consists of bytes $b sub 0$, $b sub 1$, $b sub 2$, $b sub 3$, it is taken from memory as $b sub 3$, $b sub 2$, $b sub 1$, $b sub 0$ if GL_UNPACK_SWAP_BYTES is true. GL_UNPACK_SWAP_BYTES has no effect on the memory order of components within a pixel, only on the order of bytes within components or indices. For example, the three components of a GL_RGB pixel are always stored with red first, green second, and blue third, regardless of the value of GL_UNPACK_SWAP_BYTES.

GL_UNPACK_LSB_FIRST

If true, bits are ordered within a byte from least significant to most significant; otherwise, the first bit in each byte is the most significant one. This is relevant only for bitmap data.

GL_UNPACK_ROW_LENGTH

If greater than 0, GL_UNPACK_ROW_LENGTH defines the number of pixels in a row. If the first pixel of a row is placed at location $p$ in memory, then the location of the first pixel of the next row is obtained by skipping

$k ~=~~ left { ~ lpile { n l above {a over s left ceiling { s n l } over a ^ right ceiling}} ~~ lpile {s ~>=~ a above s ~<~ a }$

components or indices, where $n$ is the number of components or indices in a pixel, $l$ is the number of pixels in a row (- GL_UNPACK_ROW_LENGTH if it is greater than 0, the $width$ argument to the pixel routine otherwise), $a$ is the value of GL_UNPACK_ALIGNMENT, and $s$ is the size, in bytes, of a single component (if $ a < s$, then it is as if $a = s$). In the case of 1-bit values, the location of the next row is obtained by skipping

$k ~=~ 8 a left ceiling { n l } over { 8 a } right ceiling$

components or indices.

The word component in this description refers to the nonindex values red, green, blue, alpha, and depth. Storage GL_RGB, for example, has three components per pixel: first red, then green, and finally blue.

GL_UNPACK_IMAGE_HEIGHT

If greater than 0, GL_UNPACK_IMAGE_HEIGHT defines the number of pixels in an image of a three-dimensional texture volume. Where ‘‘image’’ is defined by all pixel sharing the same third dimension index. If the first pixel of a row is placed at location $p$ in memory, then the location of the first pixel of the next row is obtained by skipping

$k ~=~~ left {~ lpile { n l h above {a over s left ceiling { s n l h } over a ^ right ceiling}} ~~ lpile {s ~ >=~ a above s ~<~ a }$

components or indices, where $n$ is the number of components or indices in a pixel, $l$ is the number of pixels in a row (- GL_UNPACK_ROW_LENGTH if it is greater than 0, the $width$ argument to glTexImage3D otherwise), $h$ is the number of rows in an image (GL_UNPACK_IMAGE_HEIGHT if it is greater than 0, the $height$ argument to glTexImage3D otherwise), $a$ is the value of GL_UNPACK_ALIGNMENT, and $s$ is the size, in bytes, of a single component (if $ a < s$, then it is as if $a ~=~ s$).

The word component in this description refers to the nonindex values red, green, blue, alpha, and depth. Storage GL_RGB, for example, has three components per pixel: first red, then green, and finally blue.

GL_UNPACK_SKIP_PIXELS and GL_UNPACK_SKIP_ROWS

These values are provided as a convenience to the programmer; they provide no functionality that cannot be duplicated by incrementing the pointer passed to glDrawPixels, glTexImage1D, glTexImage2D, glTexSubImage1D, glTexSubImage2D, glBitmap, or glPolygonStipple. Setting GL_UNPACK_SKIP_PIXELS to $i$ is equivalent to incrementing the pointer by $i n$ components or indices, where $n$ is the number of components or indices in each pixel. Setting GL_UNPACK_SKIP_ROWS to $j$ is equivalent to incrementing the pointer by $j k$ components or indices, where $k$ is the number of components or indices per row, as just computed in the GL_UNPACK_ROW_LENGTH section.

GL_UNPACK_ALIGNMENT

Specifies the alignment requirements for the start of each pixel row in memory. The allowable values are 1 (byte-alignment), 2 (rows aligned to even-numbered bytes), 4 (word-alignment), and 8 (rows start on double-word boundaries).

The following table gives the type, initial value, and range of valid values for each storage parameter that can be set with glPixelStore.

glPixelStoref can be used to set any pixel store parameter. If the parameter type is boolean, then if param is 0, the parameter is false; otherwise it is set to true. If pname is a integer type parameter, param is rounded to the nearest integer.

Likewise, glPixelStorei can also be used to set any of the pixel store parameters. Boolean parameters are set to false if param is 0 and true otherwise.

NOTES

The pixel storage modes in effect when glDrawPixels, glReadPixels, glTexImage1D, glTexImage2D, glTexImage3D, glTexSubImage1D, glTexSubImage2D, glTexSubImage3D, glBitmap, or glPolygonStipple is placed in a display list control the interpretation of memory data. Likewise, if the GL_ARB_imaging extension is supported, the pixel storage modes in effect when glColorTable, glColorSubTable, glConvolutionFilter1D, glConvolutionFilter2D, of glSeparableFilter2D is placed in a display list control the interpretation of memory data. The pixel storage modes in effect when a display list is executed are not significant.

Pixel storage modes are client state and must be pushed and restored using
glPushClientAttrib
and glPopClientAttrib.

ERRORS

GL_INVALID_ENUM is generated if pname is not an accepted value.

GL_INVALID_VALUE is generated if a negative row length, pixel skip, or row skip value is specified, or if alignment is specified as other than 1, 2, 4, or 8.

GL_INVALID_OPERATION is generated if glPixelStore is executed between the execution of glBegin and the corresponding execution of glEnd.

ASSOCIATED GETS

glGet with argument GL_PACK_SWAP_BYTES
glGet
with argument GL_PACK_LSB_FIRST
glGet
with argument GL_PACK_ROW_LENGTH
glGet
with argument GL_PACK_IMAGE_HEIGHT
glGet
with argument GL_PACK_SKIP_ROWS
glGet
with argument GL_PACK_SKIP_PIXELS
glGet
with argument GL_PACK_SKIP_IMAGES
glGet
with argument GL_PACK_ALIGNMENT
glGet
with argument GL_UNPACK_SWAP_BYTES
glGet
with argument GL_UNPACK_LSB_FIRST
glGet
with argument GL_UNPACK_ROW_LENGTH
glGet
with argument GL_UNPACK_IMAGE_HEIGHT
glGet
with argument GL_UNPACK_SKIP_ROWS
glGet
with argument GL_UNPACK_SKIP_PIXELS
glGet
with argument GL_UNPACK_SKIP_IMAGES
glGet
with argument GL_UNPACK_ALIGNMENT

SEE ALSO

glBitmap(3G), glColorTable(3G), glColorSubTable(3G), glConvolutionFilter1D(3G), glConvolutionFilter2D(3G), glSeparableFilter2D(3G), glDrawPixels(3G), glHistogram(3G), glMinmax(3G), glPixelMap(3G), glPixelTransfer(3G), glPixelZoom(3G), glPolygonStipple(3G), glPushClientAttrib(3G), glReadPixels(3G), glTexImage1D(3G), glTexImage2D(3G), glTexImage3D(3G), glTexSubImage1D(3G), glTexSubImage2D(3G), glTexSubImage3D(3G)



More Linux Commands

manpages/lber-sockbuf.3.html
lber-sockbuf(3) - OpenLDAP LBER I/O infrastructure (ManPage)
These routines are used to manage the low level I/O operations performed by the Lightweight BER library. They are called implicitly by the other libraries and u

manpages/add_module_replacement.3.html
add_module_replacement(3) - netsnmp_mib_api functions.......
The functions dealing with MIB modules fall into four groups - those dealing with initialisation and shutdown, with reading in and parsing MIB files, with searc

manpages/resolveip.1.html
resolveip(1) - resolve host name to IP address or vice versa
The resolveip utility resolves host names to IP addresses and vice versa. Invoke resolveip like this: shell&gt; resolveip [options] {host_name|ip-addr} ... resolve

manpages/git-describe.1.html
git-describe(1) - Show the most recent tag that is reachable
The command finds the most recent tag that is reachable from a commit. If the tag points to the commit, then only the tag is shown. Otherwise, it suffixes the t

manpages/glTexImage3D.3gl.html
glTexImage3D(3gl) - specify a three-dimensional texture imag
glTexImage3D.3gl - Texturing maps a portion of a specified texture image onto each graphical primitive for which texturing is enabled. To enable and disable thr

manpages/Tcl_AppendUnicodeToObj.3.html
Tcl_AppendUnicodeToObj(3) - manipulate Tcl objects as string
The procedures described in this manual entry allow Tcl objects to be manipulated as string values. They use the internal representation of the object to store

manpages/FcStrStr.3.html
FcStrStr(3) - locate UTF-8 substring - Linux manual page....
Returns the location of s2 in s1. Returns NULL if s2 is not present in s1. This test will operate properly with UTF8 encoded strings. VERSION Fontconfig version

manpages/terminfo_variables.3ncurses.html
terminfo_variables(3ncurses) - curses terminfo global variab
This page summarizes variables provided by the curses librarys low-level terminfo interface. A more complete description is given in the curs_terminfo(3X) manua

manpages/glIndex.3gl.html
glIndex(3gl) - set the current color index - Linux man page
glIndex updates the current (single-valued) color index. It takes one argument, the new value for the current color index. The current index is stored as a floa

manpages/ptsname_r.3.html
ptsname_r(3) - get the name of the slave pseudoterminal.....
The ptsname() function returns the name of the slave pseudoterminal device corresponding to the master referred to by fd. The ptsname_r() function is the reentr

manpages/XtResizeWidget.3.html
XtResizeWidget(3) - move and resize widgets - Linux man page
The XtConfigureWidget function returns immediately if the specified geometry fields are the same as the old values. Otherwise, XtConfigureWidget writes the new

manpages/a64l.3.html
a64l(3) - convert between long and base-64 - Linux man page
These functions provide a conversion between 32-bit long integers and little-endian base-64 ASCII strings (of length zero to six). If the string used as argumen





We can't live, work or learn in freedom unless the software we use is free.