Home | History | Annotate | Download | only in swrast

Lines Matching refs:unpack

55                            const struct gl_pixelstore_attrib *unpack,
59 _mesa_image_address2d(unpack, pixels, width,
61 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
102 const struct gl_pixelstore_attrib *unpack,
106 _mesa_image_address2d(unpack, pixels, width,
109 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
151 const struct gl_pixelstore_attrib *unpack,
155 _mesa_image_address2d(unpack, pixels, width,
158 _mesa_image_row_stride(unpack, width, format, type);
200 struct gl_pixelstore_attrib unpack;
216 unpack = *userUnpack;
219 if (!_mesa_clip_drawpixels(ctx, &x, &y, &width, &height, &unpack)) {
229 &unpack, pixels);
238 &unpack, pixels);
243 ctx->Unpack.SwapBytes)) {
245 format, type, &unpack, pixels);
262 const struct gl_pixelstore_attrib *unpack,
277 const GLvoid *source = _mesa_image_address2d(unpack, pixels,
282 type, source, unpack,
306 const struct gl_pixelstore_attrib *unpack,
323 && !unpack->SwapBytes) {
328 _mesa_image_address2d(unpack, pixels, width, height,
343 && !unpack->SwapBytes) {
349 _mesa_image_address2d(unpack, pixels, width, height,
376 const GLvoid *zSrc = _mesa_image_address2d(unpack,
390 type, zSrc, unpack);
412 const struct gl_pixelstore_attrib *unpack,
423 unpack, pixels)) {
451 = _mesa_image_row_stride(unpack, width, format, type);
460 = (const GLubyte *) _mesa_image_address2d(unpack, pixels,
468 format, type, source, unpack,
511 const struct gl_pixelstore_attrib *unpack,
523 src = _mesa_image_address2d(unpack, pixels, width, height,
525 srcRowStride = _mesa_image_row_stride(unpack, width, format, type);
551 const struct gl_pixelstore_attrib *unpack,
561 struct gl_pixelstore_attrib clippedUnpack = *unpack;
652 const struct gl_pixelstore_attrib *unpack,
677 pixels = _mesa_map_pbo_source(ctx, unpack, pixels);
689 draw_stencil_pixels( ctx, x, y, width, height, type, unpack, pixels );
694 draw_depth_pixels( ctx, x, y, width, height, type, unpack, pixels );
699 draw_depth_stencil_pixels(ctx, x, y, width, height, type, unpack, pixels);
704 draw_rgba_pixels(ctx, x, y, width, height, format, type, unpack, pixels);
709 _mesa_unmap_pbo_source(ctx, unpack);