Changeset 43273 in vbox
- Timestamp:
- Sep 10, 2012 7:29:40 PM (12 years ago)
- Location:
- trunk/src/VBox/Additions/common/crOpenGL
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/Makefile.kmk
r42499 r43273 71 71 $(VBOX_PATH_X11_ROOT)/fixesproto-4.0 \ 72 72 $(VBOX_PATH_X11_ROOT)/libx11-1.1.5-other \ 73 $(VBOX_PATH_X11_ROOT)/1.3/xorg \74 73 $(VBOX_MESA_INCS) \ 75 74 $(PATH_ROOT)/src/VBox/Additions/x11/x11include/libdrm-2.4.13 -
trunk/src/VBox/Additions/common/crOpenGL/fakedri_drv.c
r37594 r43273 30 30 #include <elf.h> 31 31 #include <unistd.h> 32 #include "xf86.h" 32 /** X server message type definitions. */ 33 typedef enum { 34 X_PROBED, /* Value was probed */ 35 X_CONFIG, /* Value was given in the config file */ 36 X_DEFAULT, /* Value is a default */ 37 X_CMDLINE, /* Value was given on the command line */ 38 X_NOTICE, /* Notice */ 39 X_ERROR, /* Error message */ 40 X_WARNING, /* Warning message */ 41 X_INFO, /* Informational message */ 42 X_NONE, /* No prefix */ 43 X_NOT_IMPLEMENTED, /* Not implemented */ 44 X_UNKNOWN = -1 /* unknown -- this must always be last */ 45 } MessageType; 33 46 34 47 #define VBOX_NO_MESA_PATCH_REPORTS
Note:
See TracChangeset
for help on using the changeset viewer.