~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to hw/dmx/glxProxy/glxcmdsswap.c

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
702
702
        */
703
703
        if (cl->largeCmdBufSize < hdr->length) {
704
704
            if (!cl->largeCmdBuf) {
705
 
                cl->largeCmdBuf = (GLbyte *) __glXMalloc(hdr->length);
 
705
                cl->largeCmdBuf = (GLbyte *) malloc(hdr->length);
706
706
            } else {
707
 
                cl->largeCmdBuf = (GLbyte *) __glXRealloc(cl->largeCmdBuf, hdr->length);
 
707
                cl->largeCmdBuf = (GLbyte *) realloc(cl->largeCmdBuf, hdr->length);
708
708
            }
709
709
            if (!cl->largeCmdBuf) {
710
710
               cl->largeCmdRequestsTotal = 0;