Changeset 45356 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Apr 5, 2013 7:01:27 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84772
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse.c
r44528 r45356 4 4 5 5 /* 6 * Copyright (C) 2006-201 2Oracle Corporation6 * Copyright (C) 2006-2013 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 117 117 #elif GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 3 118 118 VBoxPtrCtrlProc, GetMotionHistorySize(), 119 119 2 /* Number of axes */ 120 120 #else 121 121 # error Unsupported version of X.Org -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c
r45000 r45356 6 6 7 7 /* 8 * Copyright (C) 2006-201 2Oracle Corporation8 * Copyright (C) 2006-2013 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 157 157 { 158 158 {VBOX_DEVICEID, "vbox"}, 159 {-1, 159 {-1, NULL} 160 160 }; 161 161 162 162 static PciChipsets VBOXPCIchipsets[] = { 163 163 { VBOX_DEVICEID, VBOX_DEVICEID, RES_SHARED_VGA }, 164 { -1, -1,RES_UNDEFINED },164 { -1, -1, RES_UNDEFINED }, 165 165 }; 166 166 … … 199 199 /* No options for now */ 200 200 static const OptionInfoRec VBOXOptions[] = { 201 { -1, NULL, OPTV_NONE, {0},FALSE }201 { -1, NULL, OPTV_NONE, {0}, FALSE } 202 202 }; 203 203 … … 391 391 /* We always like modes specified by the user in the configuration 392 392 * file and modes requested by the host, as doing otherwise is likely to 393 393 * annoy people. */ 394 394 if ( !(mode->type & M_T_USERDEF) 395 395 && !(mode->type & M_T_PREFERRED) … … 576 576 0, /* Module minor version. Xorg-specific */ 577 577 1, /* Module patchlevel. Xorg-specific */ 578 ABI_CLASS_VIDEODRV, 578 ABI_CLASS_VIDEODRV, /* This is a video driver */ 579 579 ABI_VIDEODRV_VERSION, 580 580 MOD_CLASS_VIDEODRV, … … 1131 1131 /* colourmap code */ 1132 1132 if (!miCreateDefColormap(pScreen)) 1133 1133 return (FALSE); 1134 1134 1135 1135 if(!xf86HandleColormaps(pScreen, 256, 8, vboxLoadPalette, NULL, 0)) -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h
r45000 r45356 102 102 #include "xf86Cursor.h" 103 103 104 #define VBOX_VERSION 105 #define VBOX_NAME 106 #define VBOX_DRIVER_NAME 104 #define VBOX_VERSION 4000 /* Why? */ 105 #define VBOX_NAME "VBoxVideo" 106 #define VBOX_DRIVER_NAME "vboxvideo" 107 107 108 108 #ifdef VBOX_DRI -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo_dri.c
r44528 r45356 5 5 6 6 /* 7 * Copyright (C) 2006-201 2Oracle Corporation7 * Copyright (C) 2006-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 251 251 sprintf(pDRIInfo->busIdString, "PCI:%d:%d:%d", 252 252 ((pciConfigPtr)pVBox->pciInfo->thisCard)->busnum, 253 253 ((pciConfigPtr)pVBox->pciInfo->thisCard)->devnum, 254 254 ((pciConfigPtr)pVBox->pciInfo->thisCard)->funcnum); 255 255 #endif
Note:
See TracChangeset
for help on using the changeset viewer.