Changeset 83832 in vbox for trunk/src/VBox/Additions/3D/win
- Timestamp:
- Apr 19, 2020 2:12:33 PM (5 years ago)
- Location:
- trunk/src/VBox/Additions/3D/win
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/3D/win/VBoxGL/Makefile.kmk
r82968 r83832 27 27 VBoxGL_TEMPLATE = VBoxMesa3DGuestR3DllMinVista 28 28 # -wd4005: '__useHeader' : redefinition 29 VBoxGL_CFLAGS = -wd4005 29 VBoxGL_CFLAGS := -wd4005 30 if "$(VBOX_NEWER_VCC_TOOL_STEM)" >= "VCC141" 31 # -wd4204: nonstandard extension used: non-constant aggregate initializer 32 # -wd4459: stw_device.h(102): warning C4459: declaration of 'stw_dev' hides global declaration 33 # -wd4668: c99_compat.h(99): warning C4668: '__STDC_VERSION__' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' 34 VBoxGL_CFLAGS += -wd4204 -wd4459 -wd4668 35 endif 30 36 VBoxGL_INCS = \ 31 37 $(VBOX_PATH_3D)/win/include \ -
trunk/src/VBox/Additions/3D/win/VBoxGL/VBoxGL.c
r82968 r83832 272 272 { 273 273 D3DKMT_HANDLE hDevice = GaDrvEnvKmtDeviceHandle(pEnv); 274 NTSTATUS Status = vboxKmtOpenSharedSurface(hDevice, (D3DKMT_HANDLE) hSharedSurface, surface);274 NTSTATUS Status = vboxKmtOpenSharedSurface(hDevice, (D3DKMT_HANDLE)(uintptr_t)hSharedSurface, surface); 275 275 if (Status != STATUS_SUCCESS) 276 276 { -
trunk/src/VBox/Additions/3D/win/VBoxICD/Makefile.kmk
r82968 r83832 26 26 VBoxICD_TEMPLATE = VBoxMesa3DGuestR3DllMinVista 27 27 # -wd4005: '__useHeader' : redefinition 28 VBoxICD_CFLAGS = -wd4005 28 VBoxICD_CFLAGS := -wd4005 29 if "$(VBOX_NEWER_VCC_TOOL_STEM)" >= "VCC141" 30 # -wd4255: 'PFND3DKMT_CHECKEXCLUSIVEOWNERSHIP': no function prototype given: converting '()' to '(void)' 31 VBoxICD_CFLAGS += -wd4255 32 endif 33 29 34 VBoxICD_INCS = \ 30 35 $(VBOX_PATH_3D)/win/include \ -
trunk/src/VBox/Additions/3D/win/VBoxWddmUmHlp/VBoxMpLogger.cpp
r82968 r83832 107 107 char *pszBuffer = &szBuffer[0]; 108 108 109 int cbWritten = _snprintf(pszBuffer, cbBuffer, "['%s' 0x% x.0x%x]: ",109 int cbWritten = _snprintf(pszBuffer, cbBuffer, "['%s' 0x%lx.0x%lx]: ", 110 110 vboxUmLogGetModuleName(), GetCurrentProcessId(), GetCurrentThreadId()); 111 111 if (cbWritten < 0 || cbWritten >= cbBuffer) -
trunk/src/VBox/Additions/3D/win/VBoxWddmUmHlp/VBoxWddmUmHlp.h
r82968 r83832 24 24 #include <iprt/win/d3d9.h> 25 25 #include <d3dumddi.h> 26 #include < d3dkmthk.h>26 #include <iprt/win/d3dkmthk.h> 27 27 28 28 #include <iprt/asm.h> -
trunk/src/VBox/Additions/3D/win/include/VBoxGaDriver.h
r82968 r83832 73 73 } WDDMGalliumDriverEnv; 74 74 75 struct pipe_context; 76 struct pipe_screen; 77 struct pipe_resource; 78 75 79 typedef struct pipe_screen * WINAPI FNGaDrvScreenCreate(const WDDMGalliumDriverEnv *pEnv); 76 80 typedef FNGaDrvScreenCreate *PFNGaDrvScreenCreate;
Note:
See TracChangeset
for help on using the changeset viewer.