Lines Matching defs:hdr
45 __GLXdispatchConvolutionFilterHeader *hdr =
51 CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SWAP_BYTES, hdr->swapBytes) );
52 CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_LSB_FIRST, hdr->lsbFirst) );
53 CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_ROW_LENGTH, hdr->rowLength) );
54 CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SKIP_ROWS, hdr->skipRows) );
55 CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_SKIP_PIXELS, hdr->skipPixels) );
56 CALL_PixelStorei( GET_DISPATCH(), (GL_UNPACK_ALIGNMENT, hdr->alignment) );
61 image1len = __glXImageSize(hdr->format, hdr->type, 0, hdr->width, 1, 1,
62 0, hdr->rowLength, 0, hdr->skipRows,
63 hdr->alignment);
66 CALL_SeparableFilter2D( GET_DISPATCH(), (hdr->target, hdr->internalformat,
67 hdr->width, hdr->height, hdr->format, hdr->type,
68 ((GLubyte *)hdr+hdrlen), ((GLubyte *)hdr+hdrlen+image1len)) );