MirBSD manpage: glPixelZoom(3)


GLPIXELZOOM(3G)     UNIX Programmer's Manual      GLPIXELZOOM(3G)

NAME

     glPixelZoom - specify the pixel zoom factors

C SPECIFICATION

     void glPixelZoom( GLfloat xfactor,
                       GLfloat yfactor )

PARAMETERS

     xfactor, yfactor Specify the x and y zoom factors for pixel
                      write operations.

DESCRIPTION

     glPixelZoom specifies values for the x and y zoom factors.
     During the execution of glDrawPixels or glCopyPixels, if
     (xr, yr) is the current raster position, and a given element
     is in the mth row and nth column of the pixel rectangle,
     then pixels whose centers are in the rectangle with corners
     at

                  (xr + n.xfactor, yr + m.yfactor)

               (xr + (n+1).xfactor, yr + (m+1).yfactor)

     are candidates for replacement. Any pixel whose center lies
     on the bottom or left edge of this rectangular region is
     also modified.

     Pixel zoom factors are not limited to positive values. Nega-
     tive zoom factors reflect the resulting image about the
     current raster position.

ERRORS

     GL_INVALID_OPERATION is generated if glPixelZoom is executed
     between the execution of glBegin and the corresponding exe-
     cution of glEnd.

ASSOCIATED GETS

     glGet with argument GL_ZOOM_X
     glGet with argument GL_ZOOM_Y

SEE ALSO

     glCopyPixels(3G), glDrawPixels(3G)

MirBSD #10-current     Printed 2021-12-07                       1

Generated on 2021-12-07 11:07:08 by $MirOS: src/scripts/roff2htm,v 1.103 2021/01/23 20:24:35 tg Exp $ — This product includes material provided by mirabilos.

These manual pages and other documentation are copyrighted by their respective writers; their sources are available at the project’s CVSweb, AnonCVS and other mirrors. The rest is Copyright © 2002–2021 MirBSD.

This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report — diffs preferred.