VirtualBox

Ignore:
Timestamp:
Jul 11, 2012 8:17:59 PM (13 years ago)
Author:
vboxsync
Message:

wddm: win8 driver .inf file fixes, better device description, etc.

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  
    309309VBOXWDDMW8_EDIT_INF_DISPD3D_FN_ARG = $(if $(VBOXWDDMW8_WITH_DISPD3D),-e 's/^;dispd3d  *//', -e '/^;dispd3d /d')
    310310VBOXWDDMW8_EDIT_INF_GL_FN_ARG      = $(if $(VBOXWDDMW8_WITH_GL),-e 's/^;gl  *//', -e '/^;gl /d')
     311VBOXWDDMW8_EDIT_INF_ICD_FN_ARG      = $(if $(VBOXWDDMW8_WITH_ICD),-e 's/^;icd  *//', -e '/^;icd /d')
    311312
    312313$(PATH_TARGET)/VBoxVideoW8Cat.dir/VBoxVideoW8.inf: $(PATH_SUB_CURRENT)/mp/wddm/VBoxVideoW8.inf $(MAKEFILE_CURRENT) | $$(dir $$@)
    313314        $(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))
    315316
    316317$(PATH_TARGET)/VBoxVideoW8Cat.dir/VBoxVideoW8.sys: $$(VBoxVideoW8_1_TARGET) | $$(dir $$@)
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp

    r42101 r42120  
    65336533#endif
    65346534
    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
    65366540
    65376541    if (! ARGUMENT_PRESENT(DriverObject) ||
     
    65876591        if (f3DCheckRequired)
    65886592        {
    6589             LOG(("3D is required, doing the 3D check.."));
     6593            LOG(("3D check is required, doing the 3D check.."));
    65906594            if (!VBoxMpCrCtlConIs3DSupported())
    65916595            {
     
    66006604        }
    66016605
    6602 #if defined(DEBUG_misha) && defined(VBOX_WDDM_WIN8)
     6606#if 0 //defined(DEBUG_misha) && defined(VBOX_WDDM_WIN8)
    66036607        /* force g_VBoxDisplayOnly for debugging purposes */
    66046608        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  
    3131
    3232[Manufacturer]
    33 ;x86   %ORACLE%=Model, NTx86.6.0
    34 ;amd64 %ORACLE%=Model, NTamd64.6.0
     33;x86   %ORACLE%=Model, NTx86.6.2
     34;amd64 %ORACLE%=Model, NTamd64.6.2
    3535
    36 ;amd64 [Model.NTamd64.6.0]
    37 ;x86   [Model.NTx86.6.0]
     36;amd64 [Model.NTamd64.6.2]
     37;x86   [Model.NTx86.6.2]
    3838%VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF
    3939
     
    8282;dispd3d HKR,, UserModeDriverName,    %REG_MULTI_SZ%, VBoxDispD3D.dll
    8383;amd64 ;dispd3d HKR,, UserModeDriverNameWow,    %REG_MULTI_SZ%, VBoxDispD3D-x86.dll
    84 ;gl HKR,, OpenGLDriverName,    %REG_MULTI_SZ%, VBoxOGL.dll
    85 ;amd64 ;gl HKR,, OpenGLDriverNameWoW, %REG_MULTI_SZ%, VBoxOGL-x86.dll
    86 ;gl        HKR,, OpenGLFlags,         %REG_DWORD%,    0x00000001
    87 ;amd64 ;gl HKR,, OpenGLFlagsWoW,      %REG_DWORD%,    0x00000001
    88 ;gl        HKR,, OpenGLVersion,       %REG_DWORD%,    0x00000001
    89 ;amd64 ;gl HKR,, OpenGLVersionWoW,    %REG_DWORD%,    0x00000001
     84;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
    9090HKR,, VgaCompatible, %REG_DWORD%, 0
    9191
     
    145145ORACLE = "Oracle Corporation"
    146146VBoxVideo.Disk = "VirtualBox Video Driver Disk"
    147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter WDDM 1.2"
     147VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter for Windows 8"
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxVideoWddm.inf

    r40567 r42120  
    145145ORACLE = "Oracle Corporation"
    146146VBoxVideo.Disk = "VirtualBox Video Driver Disk"
    147 VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter (Microsoft Corporation - WDDM)"
     147VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter for Windows Vista and 7"
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette