- Timestamp:
- Jul 11, 2012 10:25:42 AM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3DCmn.h
r38112 r42101 20 20 #define ___VBoxDispD3DCmn_h___ 21 21 22 # define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap 23 # define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap 24 # define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap 25 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 26 # define _interlockedbittestandset _interlockedbittestandset_StupidDDKVsCompilerCrap 27 # define _interlockedbittestandreset _interlockedbittestandreset_StupidDDKVsCompilerCrap 28 # define _interlockedbittestandset64 _interlockedbittestandset64_StupidDDKVsCompilerCrap 29 # define _interlockedbittestandreset64 _interlockedbittestandreset64_StupidDDKVsCompilerCrap 30 # pragma warning(disable : 4163) 22 31 #include <windows.h> 32 # pragma warning(default : 4163) 33 # undef _InterlockedExchange 34 # undef _InterlockedExchangeAdd 35 # undef _InterlockedCompareExchange 36 # undef _InterlockedAddLargeStatistic 37 # undef _interlockedbittestandset 38 # undef _interlockedbittestandreset 39 # undef _interlockedbittestandset64 40 # undef _interlockedbittestandreset64 41 23 42 #include <d3d9types.h> 24 43 //#include <d3dtypes.h> -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispMpTst.cpp
r39981 r42101 17 17 */ 18 18 19 #include "VBoxDispD3DCmn.h" 19 20 #include "VBoxDispMp.h" 20 21 21 22 #include <iprt/thread.h> 22 23 #include <iprt/err.h> 23 24 #include "VBoxDispD3DCmn.h"25 24 26 25 #ifdef VBOXWDDM_TEST_UHGSMI -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/Makefile.kmk
r42091 r42101 169 169 $(VBOX_LIB_VBGL_R0) \ 170 170 $(VBOX_LIB_IPRT_GUEST_R0_NT4) \ 171 $(VBOX_PATH_ADDITIONS_LIB)/HGSMIGuestR0Lib$(VBOX_SUFF_LIB) 171 $(VBOX_PATH_ADDITIONS_LIB)/HGSMIGuestR0Lib$(VBOX_SUFF_LIB) 172 VBoxVideoW8_LIBS.amd64 = $(PATH_SDK_WINDDKW8_LIB)/BufferOverflowK.lib 172 173 endif # VBOX_WDDM_WIN8 173 174 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r42098 r42101 6600 6600 } 6601 6601 6602 #if def DEBUG_misha6602 #if defined(DEBUG_misha) && defined(VBOX_WDDM_WIN8) 6603 6603 /* force g_VBoxDisplayOnly for debugging purposes */ 6604 6604 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/VBoxMPWddm.h
r42083 r42101 35 35 #define VBOXWDDM_CFG_STR_LOG_UM L"VBoxLogUm" 36 36 extern DWORD g_VBoxLogUm; 37 #ifdef VBOX_WDDM_WIN8 37 38 extern DWORD g_VBoxDisplayOnly; 39 #endif 38 40 39 41 RT_C_DECLS_BEGIN
Note:
See TracChangeset
for help on using the changeset viewer.