vbox的更動 69075 路徑 trunk/src/VBox
- 時間撮記:
- 2017-10-13 下午02:17:38 (7 年 以前)
- 位置:
- trunk/src/VBox/Additions/x11/vboxvideo
- 檔案:
-
- 修改 5 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Additions/x11/vboxvideo/Makefile.kmk
r69061 r69075 41 41 vboxvideo_override_INCLUDES = \ 42 42 -include $(PATH_ROOT)/src/VBox/Additions/x11/vboxvideo/HGSMIMemAlloc.h 43 44 vboxvideo.c_DEPS = $(VBOX_SVN_REV_HEADER)45 43 46 44 LIBRARIES += vboxvideo_drv_lib -
trunk/src/VBox/Additions/x11/vboxvideo/edid.c
r69058 r69075 37 37 */ 38 38 39 #include <misc.h>40 #include <xf86DDC.h>41 #include <xf86Crtc.h>39 #include "misc.h" 40 #include "xf86DDC.h" 41 #include "xf86Crtc.h" 42 42 #include "vboxvideo.h" 43 43 -
trunk/src/VBox/Additions/x11/vboxvideo/pointer.c
r69066 r69075 29 29 30 30 #ifndef PCIACCESS 31 # include <xf86Pci.h>31 # include "xf86Pci.h" 32 32 # include <Pci.h> 33 33 #endif -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c
r69066 r69075 74 74 /* For setting the root window property. */ 75 75 #include "property.h" 76 #include "X11/Xatom.h"76 #include <X11/Xatom.h> 77 77 78 78 #ifdef XORG_7X … … 491 491 { RT_NOREF(output, mode, adjusted_mode); } 492 492 493 /* A virtual monitor is always connected. */494 493 static xf86OutputStatus 495 494 vbox_output_detect (xf86OutputPtr output) … … 752 751 } 753 752 754 TRACE_LOG("returning %s\n", BOOL_STR(pScrn != NULL));753 TRACE_LOG("returning %s\n", pScrn == NULL ? "false" : "true"); 755 754 return (pScrn != NULL); 756 755 } … … 1085 1084 TRACE_ENTRY(); 1086 1085 1087 /* Initialise our guest library if possible: ignore failure. */1088 VbglR3Init();1089 1086 if (!VBOXMapVidMem(pScrn)) 1090 1087 return (FALSE); … … 1341 1338 ret = pScreen->CloseScreen(pScreen); 1342 1339 #endif 1343 VbglR3Term();1344 1340 return ret; 1345 1341 } -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h
r69065 r69075 93 93 vbvxAbortServer(); \ 94 94 } 95 96 #define BOOL_STR(a) ((a) ? "TRUE" : "FALSE")97 95 98 96 #include <VBoxVideoVBE.h>
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器