Changeset 38982 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/include
- Timestamp:
- Oct 12, 2011 8:20:21 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/wine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/debug.h
r38147 r38982 31 31 #define __WINE_WINE_DEBUG_H 32 32 33 #if defined(VBOX_WITH_WDDM) || defined(VBOX_WINE_WITHOUT_LIBWINE) 34 # error "unexpected include!!" 35 #endif 36 33 37 #include <stdarg.h> 34 38 #include <windef.h> … … 317 321 #endif 318 322 323 324 #ifdef DEBUG_misha 325 //# define VBOXWINEDBG_SHADERS 326 #endif 327 328 #ifdef VBOXWINEDBG_SHADERS 329 330 void vboxWDbgPrintF(char * szString, ...); 331 332 # define WDLOG(_m) do {\ 333 vboxWDbgPrintF _m ; \ 334 } while (0) 335 #else 336 337 # define WDLOG(_m) do { } while (0) 338 #endif 339 319 340 #endif /* __WINE_WINE_DEBUG_H */ -
trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/wined3d.h
r38903 r38982 6 6 #ifndef __WIDL_WINED3D_H 7 7 #define __WIDL_WINED3D_H 8 9 #if defined(VBOX_WITH_WDDM) || defined(VBOX_WINE_WITHOUT_LIBWINE) 10 # error "unexpected include!!" 11 #endif 8 12 9 13 #ifdef __cplusplus … … 3429 3433 IWineD3DResource* This); 3430 3434 3435 #ifdef VBOX_WITH_WDDM 3436 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 3437 IWineD3DResource* This); 3438 #endif 3439 3431 3440 END_INTERFACE 3432 3441 } IWineD3DResourceVtbl; … … 3451 3460 #define IWineD3DResource_UnLoad(This) (This)->lpVtbl->UnLoad(This) 3452 3461 #define IWineD3DResource_GetType(This) (This)->lpVtbl->GetType(This) 3462 # ifdef VBOX_WITH_WDDM 3463 # define IWineD3DResource_SetDontDeleteGl(This) (This)->lpVtbl->SetDontDeleteGl(This) 3464 # endif 3453 3465 #endif 3454 3466 … … 4055 4067 WINED3DRESOURCETYPE (STDMETHODCALLTYPE *GetType)( 4056 4068 IWineD3DSurface* This); 4069 4070 #ifdef VBOX_WITH_WDDM 4071 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 4072 IWineD3DResource* This); 4073 #endif 4057 4074 4058 4075 /*** IWineD3DSurface methods ***/ … … 4671 4688 IWineD3DVolume* This); 4672 4689 4690 #ifdef VBOX_WITH_WDDM 4691 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 4692 IWineD3DResource* This); 4693 #endif 4694 4673 4695 /*** IWineD3DVolume methods ***/ 4674 4696 HRESULT (STDMETHODCALLTYPE *GetContainer)( … … 4884 4906 WINED3DRESOURCETYPE (STDMETHODCALLTYPE *GetType)( 4885 4907 IWineD3DBaseTexture* This); 4908 4909 #ifdef VBOX_WITH_WDDM 4910 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 4911 IWineD3DResource* This); 4912 #endif 4886 4913 4887 4914 /*** IWineD3DBaseTexture methods ***/ … … 5130 5157 WINED3DRESOURCETYPE (STDMETHODCALLTYPE *GetType)( 5131 5158 IWineD3DTexture* This); 5159 5160 #ifdef VBOX_WITH_WDDM 5161 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 5162 IWineD3DTexture* This); 5163 #endif 5132 5164 5133 5165 /*** IWineD3DBaseTexture methods ***/ … … 5377 5409 IWineD3DCubeTexture* This); 5378 5410 5411 #ifdef VBOX_WITH_WDDM 5412 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 5413 IWineD3DCubeTexture* This); 5414 #endif 5415 5379 5416 /*** IWineD3DBaseTexture methods ***/ 5380 5417 DWORD (STDMETHODCALLTYPE *SetLOD)( … … 5627 5664 IWineD3DVolumeTexture* This); 5628 5665 5666 #ifdef VBOX_WITH_WDDM 5667 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 5668 IWineD3DResource* This); 5669 #endif 5670 5629 5671 /*** IWineD3DBaseTexture methods ***/ 5630 5672 DWORD (STDMETHODCALLTYPE *SetLOD)( … … 6382 6424 WINED3DRESOURCETYPE (STDMETHODCALLTYPE *GetType)( 6383 6425 IWineD3DBuffer* This); 6426 6427 #ifdef VBOX_WITH_WDDM 6428 HRESULT (STDMETHODCALLTYPE *SetDontDeleteGl)( 6429 IWineD3DResource* This); 6430 #endif 6384 6431 6385 6432 /*** IWineD3DBuffer methods ***/
Note:
See TracChangeset
for help on using the changeset viewer.