Update DRI drivers to current DRI CVS and make them work.

This commit is contained in:
Jon Smirl
2003-10-21 06:05:39 +00:00
parent 906449753f
commit bcc6eddd33
96 changed files with 3627 additions and 1302 deletions
+6
View File
@@ -488,6 +488,12 @@ struct __DRIscreenPrivateRec {
* the drawable that was bound. Otherwise, this is NULL.
*/
__DRIdrawablePrivate *fullscreen;
/**
* \brief Screen number for when multiple screens are supported
*/
int myNum;
};
extern void
+2 -2
View File
@@ -31,7 +31,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* $Id: miniglx.c,v 1.1 2003/08/22 20:11:43 brianp Exp $ */
/* $Id: miniglx.c,v 1.2 2003/10/21 06:05:40 jonsmirl Exp $ */
/**
* \mainpage Mini GLX
@@ -732,7 +732,7 @@ static int get_chipset_from_busid( Display *dpy )
nr = sscanf(buf, "%04x\t%04x%04x", &encode,
&vendor, &device);
bus = encode >> 16;
bus = encode >> 8;
dev = (encode & 0xFF) >> 3;
fn = encode & 0x7;