Changeset 42120 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video
- Timestamp:
- Jul 11, 2012 8:17:59 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/Makefile.kmk
r42115 r42120 309 309 VBOXWDDMW8_EDIT_INF_DISPD3D_FN_ARG = $(if $(VBOXWDDMW8_WITH_DISPD3D),-e 's/^;dispd3d *//', -e '/^;dispd3d /d') 310 310 VBOXWDDMW8_EDIT_INF_GL_FN_ARG = $(if $(VBOXWDDMW8_WITH_GL),-e 's/^;gl *//', -e '/^;gl /d') 311 VBOXWDDMW8_EDIT_INF_ICD_FN_ARG = $(if $(VBOXWDDMW8_WITH_ICD),-e 's/^;icd *//', -e '/^;icd /d') 311 312 312 313 $(PATH_TARGET)/VBoxVideoW8Cat.dir/VBoxVideoW8.inf: $(PATH_SUB_CURRENT)/mp/wddm/VBoxVideoW8.inf $(MAKEFILE_CURRENT) | $$(dir $$@) 313 314 $(call MSG_GENERATE,VBoxVideoW8-inf,$@,$<) 314 $(call VBOX_EDIT_INF_FN,$<,$@ $(VBOXWDDMW8_EDIT_INF_DISPD3D_FN_ARG) $(VBOXWDDMW8_EDIT_INF_GL_FN_ARG) )315 $(call VBOX_EDIT_INF_FN,$<,$@ $(VBOXWDDMW8_EDIT_INF_DISPD3D_FN_ARG) $(VBOXWDDMW8_EDIT_INF_GL_FN_ARG) $(VBOXWDDMW8_EDIT_INF_ICD_FN_ARG)) 315 316 316 317 $(PATH_TARGET)/VBoxVideoW8Cat.dir/VBoxVideoW8.sys: $$(VBoxVideoW8_1_TARGET) | $$(dir $$@) -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r42101 r42120 6533 6533 #endif 6534 6534 6535 LOGREL(("Built %s %s", __DATE__, __TIME__)); 6535 #ifdef VBOX_WDDM_WIN8 6536 LOGREL(("VBox WDDM Driver for Windows 8; Built %s %s", __DATE__, __TIME__)); 6537 #else 6538 LOGREL(("VBox WDDM Driver for Windows Vista and 7; Built %s %s", __DATE__, __TIME__)); 6539 #endif 6536 6540 6537 6541 if (! ARGUMENT_PRESENT(DriverObject) || … … 6587 6591 if (f3DCheckRequired) 6588 6592 { 6589 LOG(("3D is required, doing the 3D check.."));6593 LOG(("3D check is required, doing the 3D check..")); 6590 6594 if (!VBoxMpCrCtlConIs3DSupported()) 6591 6595 { … … 6600 6604 } 6601 6605 6602 #if defined(DEBUG_misha) && defined(VBOX_WDDM_WIN8)6606 #if 0 //defined(DEBUG_misha) && defined(VBOX_WDDM_WIN8) 6603 6607 /* force g_VBoxDisplayOnly for debugging purposes */ 6604 6608 LOGREL(("Current win8 video driver only supports display-only mode no matter whether or not host 3D is enabled!")); -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxVideoW8.inf
r42060 r42120 31 31 32 32 [Manufacturer] 33 ;x86 %ORACLE%=Model, NTx86.6. 034 ;amd64 %ORACLE%=Model, NTamd64.6. 033 ;x86 %ORACLE%=Model, NTx86.6.2 34 ;amd64 %ORACLE%=Model, NTamd64.6.2 35 35 36 ;amd64 [Model.NTamd64.6. 0]37 ;x86 [Model.NTx86.6. 0]36 ;amd64 [Model.NTamd64.6.2] 37 ;x86 [Model.NTx86.6.2] 38 38 %VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF 39 39 … … 82 82 ;dispd3d HKR,, UserModeDriverName, %REG_MULTI_SZ%, VBoxDispD3D.dll 83 83 ;amd64 ;dispd3d HKR,, UserModeDriverNameWow, %REG_MULTI_SZ%, VBoxDispD3D-x86.dll 84 ; glHKR,, OpenGLDriverName, %REG_MULTI_SZ%, VBoxOGL.dll85 ;amd64 ; glHKR,, OpenGLDriverNameWoW, %REG_MULTI_SZ%, VBoxOGL-x86.dll86 ; glHKR,, OpenGLFlags, %REG_DWORD%, 0x0000000187 ;amd64 ; glHKR,, OpenGLFlagsWoW, %REG_DWORD%, 0x0000000188 ; glHKR,, OpenGLVersion, %REG_DWORD%, 0x0000000189 ;amd64 ; glHKR,, OpenGLVersionWoW, %REG_DWORD%, 0x0000000184 ;icd HKR,, OpenGLDriverName, %REG_MULTI_SZ%, VBoxOGL.dll 85 ;amd64 ;icd HKR,, OpenGLDriverNameWoW, %REG_MULTI_SZ%, VBoxOGL-x86.dll 86 ;icd HKR,, OpenGLFlags, %REG_DWORD%, 0x00000001 87 ;amd64 ;icd HKR,, OpenGLFlagsWoW, %REG_DWORD%, 0x00000001 88 ;icd HKR,, OpenGLVersion, %REG_DWORD%, 0x00000001 89 ;amd64 ;icd HKR,, OpenGLVersionWoW, %REG_DWORD%, 0x00000001 90 90 HKR,, VgaCompatible, %REG_DWORD%, 0 91 91 … … 145 145 ORACLE = "Oracle Corporation" 146 146 VBoxVideo.Disk = "VirtualBox Video Driver Disk" 147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter WDDM 1.2"147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter for Windows 8" -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxVideoWddm.inf
r40567 r42120 145 145 ORACLE = "Oracle Corporation" 146 146 VBoxVideo.Disk = "VirtualBox Video Driver Disk" 147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter (Microsoft Corporation - WDDM)"147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter for Windows Vista and 7"
Note:
See TracChangeset
for help on using the changeset viewer.