• Home
  • Raw
  • Download

Lines Matching refs:GLint

103                     GLint img, GLint row, GLint column )  in _mesa_image_offset()
105 GLint alignment; /* 1, 2 or 4 */ in _mesa_image_offset()
106 GLint pixels_per_row; in _mesa_image_offset()
107 GLint rows_per_image; in _mesa_image_offset()
108 GLint skiprows; in _mesa_image_offset()
109 GLint skippixels; in _mesa_image_offset()
110 GLint skipimages; /* for 3-D volume images */ in _mesa_image_offset()
137 GLint bytes_per_row; in _mesa_image_offset()
138 GLint bytes_per_image; in _mesa_image_offset()
140 const GLint comp_per_pixel = 1; in _mesa_image_offset()
156 GLint bytes_per_pixel, bytes_per_row, remainder, bytes_per_image; in _mesa_image_offset()
157 GLint topOfImage; in _mesa_image_offset()
219 GLint img, GLint row, GLint column ) in _mesa_image_address()
235 GLint column ) in _mesa_image_address1d()
247 GLint row, GLint column ) in _mesa_image_address2d()
259 GLint img, GLint row, GLint column ) in _mesa_image_address3d()
277 GLint
279 GLint width, GLenum format, GLenum type ) in _mesa_image_row_stride()
281 GLint bytesPerRow, remainder; in _mesa_image_row_stride()
295 const GLint bytesPerPixel = _mesa_bytes_per_pixel(format, type); in _mesa_image_row_stride()
324 GLint
326 GLint width, GLint height, in _mesa_image_image_stride()
329 GLint bytesPerRow, bytesPerImage, remainder; in _mesa_image_image_stride()
342 const GLint bytesPerPixel = _mesa_bytes_per_pixel(format, type); in _mesa_image_image_stride()
385 GLubyte *destBuffer, GLint destStride, in _mesa_expand_bitmap()
391 const GLint srcStride = _mesa_image_row_stride(unpack, width, in _mesa_expand_bitmap()
393 GLint row, col; in _mesa_expand_bitmap()
592 GLint *destX, GLint *destY, in _mesa_clip_drawpixels()
663 GLint *srcX, GLint *srcY, in _mesa_clip_readpixels()
713 GLint *destX, GLint *destY, in _mesa_clip_copytexsubimage()
714 GLint *srcX, GLint *srcY, in _mesa_clip_copytexsubimage()
718 const GLint srcX0 = *srcX, srcY0 = *srcY; in _mesa_clip_copytexsubimage()
740 _mesa_clip_to_region(GLint xmin, GLint ymin, in _mesa_clip_to_region()
741 GLint xmax, GLint ymax, in _mesa_clip_to_region()
742 GLint *x, GLint *y, in _mesa_clip_to_region()
779 clip_right_or_top(GLint *srcX0, GLint *srcX1, in clip_right_or_top()
780 GLint *dstX0, GLint *dstX1, in clip_right_or_top()
781 GLint maxValue) in clip_right_or_top()
793 *srcX1 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias); in clip_right_or_top()
803 *srcX0 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias); in clip_right_or_top()
812 clip_left_or_bottom(GLint *srcX0, GLint *srcX1, in clip_left_or_bottom()
813 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom()
814 GLint minValue) in clip_left_or_bottom()
826 *srcX0 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias); in clip_left_or_bottom()
836 *srcX1 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias); in clip_left_or_bottom()
856 GLint *srcX0, GLint *srcY0, GLint *srcX1, GLint *srcY1, in _mesa_clip_blit()
857 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1) in _mesa_clip_blit()
859 const GLint srcXmin = 0; in _mesa_clip_blit()
860 const GLint srcXmax = ctx->ReadBuffer->Width; in _mesa_clip_blit()
861 const GLint srcYmin = 0; in _mesa_clip_blit()
862 const GLint srcYmax = ctx->ReadBuffer->Height; in _mesa_clip_blit()
865 const GLint dstXmin = ctx->DrawBuffer->_Xmin; in _mesa_clip_blit()
866 const GLint dstXmax = ctx->DrawBuffer->_Xmax; in _mesa_clip_blit()
867 const GLint dstYmin = ctx->DrawBuffer->_Ymin; in _mesa_clip_blit()
868 const GLint dstYmax = ctx->DrawBuffer->_Ymax; in _mesa_clip_blit()