glDrawPixels

来源:互联网 发布:网络管理是什么意思 编辑:程序博客网 时间:2024/04/26 11:04

glDrawPixels

The glDrawPixels function writes a block of pixels to the framebuffer.

复制
void glDrawPixels(  GLsizei width,  GLsizei height,  GLenum format,  GLenum type,  const GLvoid *pixels);

Parameters

width, height
The dimensions of the pixel rectangle that will be written into the framebuffer.
format
The format of the pixel data. Acceptable symbolic constants are:ConstantDescriptionGL_COLOR_INDEXEach pixel is a single value, a color index.
  1. The glDrawPixels function converts each pixel 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. TheglDrawPixels function converts signed and unsigned integer data with all fraction bits set to zero. The function converts bitmap data to either 0.0 or 1.0.
  2. The glDrawPixels function shifts each fixed-point index left by GL_INDEX_SHIFT bits and adds it 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.
  3. When in RGBA mode, glDrawPixels converts the resulting index to an RGBA pixel using 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. When in the color-index mode and GL_MAP_COLOR is true, the index is replaced with the value that glDrawPixels references in lookup table GL_PIXEL_MAP_I_TO_I.
  4. Whether the lookup replacement of the index is done or not, the integer part of the index isANDed with 2b 1, where b is the number of bits in a color-index buffer.
  5. The resulting indexes or RGBA colors are then converted to fragments by attaching the current raster positionz-coordinate and texture coordinates to each pixel, and then assigning x and y window coordinates to the nth fragment such that

    xn = xr + n mod width

    yn = yr + n/width

    where (xr, yr) is the current raster position.

  6. The glDrawPixels function treats these pixel fragments just like the fragments generated by rasterizing points, lines, or polygons. It applies texture mapping, fog, and all the fragment operations before writing the fragments to the framebuffer.
GL_STENCIL_INDEXEach pixel is a single value, a stencil index.
  1. The glDrawPixels function converts it 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. TheglDrawPixels function converts signed and unsigned integer data with all fraction bits set to zero. Bitmap data converts to either 0.0 or 1.0.
  2. The glDrawPixels function shifts each fixed-point index left by GL_INDEX_SHIFT bits, and adds it 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.
  3. If GL_MAP_STENCIL is true, the index is replaced with the value that glDrawPixels references in lookup table GL_PIXEL_MAP_S_TO_S.
  4. Whether the lookup replacement of the index is done or not, the integer part of the index is thenANDed with 2b 1, where b is the number of bits in the stencil buffer. The resulting stencil indexes are then written to the stencil buffer such that thenth index is written to location

    xn = xr + n mod width

    yn = yr + n /width

    where (xr, yr) is the current raster position. Only the pixel ownership test, the scissor test, and the stencil writemask affect these writes.

GL_DEPTH_COMPONENTEach pixel is a single-depth component.
  1. The glDrawPixels function converts floating-point data directly to an internal floating-point format with unspecified precision. Signed integer data is mapped linearly to the internal floating-point format such that the most positive representable integer value maps to 1.0, and the most negative representable value maps to 1.0. Unsigned integer data is mapped similarly: the largest integer value maps to 1.0, and zero maps to 0.0.
  2. The glDrawPixels function multiplies the resulting floating-point depth value by GL_DEPTH_SCALE and adds it to GL_DEPTH_BIAS. The result is clamped to the range [0,1].
  3. The glDrawPixels function converts the resulting depth components to fragments by attaching the current raster position color or color index and texture coordinates to each pixel, and then assigningx and y window coordinates to the nth fragment such that

    xn = xr + n mod width

    yn = yr + n /width

    where (xr, yr) is the current raster position.

  4. These pixel fragments are then treated just like the fragments generated by rasterizing points, lines, or polygons. TheglDrawPixels function applies texture mapping, fog, and all the fragment operations before writing the fragments to the framebuffer.
GL_RGBAEach pixel is a four-component group in this order: red, green, blue, alpha.
  1. The glDrawPixels function converts floating-point values directly to an internal floating-point format with unspecified precision. Signed integer values are mapped linearly to the internal floating-point format such that the most positive representable integer value maps to 1.0, and the most negative representable value maps to 1.0. Unsigned integer data is mapped similarly: the largest integer value maps to 1.0, and zero maps to 0.0.
  2. The glDrawPixels function multiplies the resulting floating-point color values by GL_c_SCALE and adds them to GL_c_BIAS, wherec is RED, GREEN, BLUE, and ALPHA for the respective color components. The results are clamped to the range [0,1].
  3. If GL_MAP_COLOR is true, glDrawPixels scales each color component by the size of lookup table GL_PIXEL_MAP_c_TO_c, and then replaces the component by the value that it references in that table;c is R, G, B, or A, respectively.
  4. The glDrawPixels function converts the resulting RGBA colors to fragments by attaching the current raster positionz-coordinate and texture coordinates to each pixel, then assigning x andy window coordinates to the nth fragment such that

    xn = xr + n mod width

    yn = yr + n /width

    where (xr, yr) is the current raster position.

  5. These pixel fragments are then treated just like the fragments generated by rasterizing points, lines, or polygons. TheglDrawPixels function applies texture mapping, fog, and all the fragment operations before writing the fragments to the framebuffer.
GL_REDEach pixel is a single red component.

The glDrawPixels function converts this component to the internal floating-point format in the same way that the red component of an RGBA pixel is, and then converts it to an RGBA pixel with green and blue set to 0.0, and alpha set to 1.0. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.

GL_GREENEach pixel is a single green component.

The glDrawPixels function converts this component to the internal floating-point format in the same way that the green component of an RGBA pixel is, and then converts it to an RGBA pixel with red and blue set to 0.0, and alpha set to 1.0. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.

GL_BLUEEach pixel is a single blue component.

The glDrawPixels function converts this component to the internal floating-point format in the same way that the blue component of an RGBA pixel is, and then converts it to an RGBA pixel with red and green set to 0.0, and alpha set to 1.0. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.

GL_ALPHAEach pixel is a single alpha component.

The glDrawPixels function converts this component to the internal floating-point format in the same way that the alpha component of an RGBA pixel is, and then converts it to an RGBA pixel with red, green, and blue set to 0.0. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.

GL_RGBEach pixel is a group of three components in this order: red, green, blue. TheglDrawPixels function converts each component to the internal floating-point format in the same way that the red, green, and blue components of an RGBA pixel are. The color triple is converted to an RGBA pixel with alpha set to 1.0. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.GL_LUMINANCEEach pixel is a single luminance component.

The glDrawPixels function converts this component to the internal floating-point format in the same way that the red component of an RGBA pixel is, and then converts it to an RGBA pixel with red, green, and blue set to the converted luminance value, and alpha set to 1.0. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.

GL_LUMINANCE_ALPHAEach pixel is a group of two components in this order: luminance, alpha.

The glDrawPixels function converts the two components to the internal floating-point format in the same way that the red component of an RGBA pixel is, and then converts them to an RGBA pixel with red, green, and blue set to the converted luminance value, and alpha set to the converted alpha value. After this conversion, the pixel is treated just as if it had been read as an RGBA pixel.

GL_BGR_EXTEach pixel is a group of three components in this order: blue, green, red.

GL_BGR_EXT provides a format that matches the memory layout of Windows device-independent bitmaps (DIBs). Thus your applications can use the same data with Win32 function calls and OpenGL pixel function calls.

GL_BGRA_EXTEach pixel is a group of four components in this order: blue, green, red, alpha.

GL_BGRA_EXT provides a format that matches the memory layout of Windows device-independent bitmaps (DIBs). Thus your applications can use the same data with Win32 function calls and OpenGL pixel function calls.


type
The data type for pixels. The following symbolic constants are accepted: GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, and GL_FLOAT.

The following table summarizes the meaning of the valid constants for the type parameter.

TypeMeaningGL_UNSIGNED_BYTEUnsigned 8-bit integerGL_BYTESigned 8-bit integerGL_BITMAPSingle bits in unsigned 8-bit integersGL_UNSIGNED_SHORTUnsigned 16-bit integerGL_SHORTSigned 16-bit integerGL_UNSIGNED_INTUnsigned 32-bit integerGL_INT32-bit integerGL_FLOATSingle-precision floating-point
pixels
A pointer to the pixel data.

Remarks

The glDrawPixels function reads pixel data from memory and writes it into the framebuffer relative to the current raster position. UseglRasterPos to set the current raster position, and useglGet with argument GL_CURRENT_RASTER_POSITION to query the raster position.

Several parameters define the encoding of pixel data in memory and control the processing of the pixel data before it is placed in the framebuffer. These parameters are set with four functions:glPixelStore,glPixelTransfer,glPixelMap, andglPixelZoom. This topic describes the effects onglDrawPixels of many, but not all, of the parameters specified by these four functions.

Data is read from pixels as a sequence of signed or unsigned bytes, signed or unsigned shorts, signed or unsigned integers, or single-precision floating-point values, depending ontype. Each of these bytes, shorts, integers, or floating-point values is interpreted as one color or depth component, or one index, depending onformat. Indexes are always treated individually. Color components are treated as groups of one, two, three, or four values, again based onformat. Both individual indexes and groups of components are referred to as pixels. Iftype is GL_BITMAP, the data must be unsigned bytes, and format must be either GL_COLOR_INDEX or GL_STENCIL_INDEX. Each unsigned byte is treated as eight 1-bit pixels, with bit ordering determined by GL_UNPACK_LSB_FIRST (seeglPixelStore).

The width by height pixels are read from memory, starting at locationpixels. By default, these pixels are taken from adjacent memory locations, except that after allwidth pixels are read, the read pointer is advanced to the next 4-byte boundary. TheglPixelStore function specifies the 4-byte row alignment with argument GL_UNPACK_ALIGNMENT, and you can set it to 1, 2, 4, or 8 bytes. Other pixel store parameters specify different read pointer advancements, both before the first pixel is read, and after all width pixels are read. The glPixelStore function operates on each of thewidth-by-height pixels that it reads from memory in the same way, based on the values of several parameters specified byglPixelTransfer andglPixelMap. 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.

The rasterization described thus far assumes pixel zoom factors of 1.0. If you useglPixelZoom to change thex and y pixel zoom factors, pixels are converted to fragments as follows. If (x (r) , y (r)) is the current raster position, and a given pixel is in the n column andm row of the pixel rectangle, then fragments are generated for pixels whose centers are in the rectangle with corners at

(xr + zoomx n, yr + zoomy m)

(xr + zoomx (n + 1), yr + zoomy (m + 1))

where zoomx is the value of GL_ZOOM_X and zoomy is the value of GL_ZOOM_Y.

The following functions retrieve information related to glDrawPixels:

glGet with argument GL_CURRENT_RASTER_POSITION

glGet with argument GL_CURRENT_RASTER_POSITION_VALID

Error Codes

The following are the error codes generated and their conditions.

Error codeConditionGL_INVALID_VALUEEither width or height was negative.GL_INVALID_ENUMEither format or type was not an accepted value.GL_INVALID_OPERATIONformat was GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_RGBA, GL_BGR_EXT, GL_BGRA_EXT, GL_LUMINANCE, or GL_LUMINANCE_ALPHA, and OpenGL was in color-index mode.GL_INVALID_ENUMtype was GL_BITMAP and format was not either GL_COLOR_INDEX or GL_STENCIL_INDEX.GL_INVALID_OPERATIONformat was GL_STENCIL_INDEX and there was no stencil buffer.GL_INVALID_OPERATIONglDrawPixels was called between a call to glBegin and the corresponding call to glEnd.

Requirements

  Windows NT/2000: Requires Windows NT 3.5 or later.
  Windows 95/98: Requires Windows 95 or later. Available as a redistributable for Windows 95.
  Header: Declared in Gl.h.
  Library: Use Opengl32.lib.

See Also

glAlphaFunc,glBegin,glBlendFunc,glCopyPixels,glDepthFunc,glEnd,glGet,glLogicOp,glPixelMap,glPixelStore,glPixelTransfer,glPixelZoom,glRasterPos,glReadPixels,glScissor,glStencilFunc


原创粉丝点击