Changeset 28228 in vbox for trunk/include/VBox
- Timestamp:
- Apr 12, 2010 10:54:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxVideo.h
r27682 r28228 104 104 #define VBVA_ADAPTER_INFORMATION_SIZE (16*_1K) 105 105 #define VBVA_DISPLAY_INFORMATION_SIZE (64*_1K) 106 #endif 106 107 #define VBVA_MIN_BUFFER_SIZE (64*_1K) 107 #endif108 108 #endif /* VBOX_WITH_HGSMI */ 109 109 … … 941 941 #define VBVA_F_ENABLE 0x00000001 942 942 #define VBVA_F_DISABLE 0x00000002 943 #ifdef VBOXWDDM_WITH_VBVA 944 /* extended VBVA to be used with WDDM */ 945 #define VBVA_F_EXTENDED 0x00000004 946 #endif 943 947 944 948 typedef struct _VBVAENABLE … … 947 951 uint32_t u32Offset; 948 952 int32_t i32Result; 949 950 953 } VBVAENABLE; 954 955 #ifdef VBOXWDDM_WITH_VBVA 956 typedef struct _VBVAENABLE_EX 957 { 958 VBVAENABLE Base; 959 uint32_t u32ScreenId; 960 } VBVAENABLE_EX; 961 #endif 962 951 963 952 964 typedef struct _VBVAMOUSEPOINTERSHAPE … … 1044 1056 #define VBOXSHGSMI_FLAG_GH_SYNCH 0x00000040 1045 1057 1046 DECLINLINE(uint8_t *) VBoxSHGSMIBufferData (const PVBOXSHGSMIHEADERpHeader)1058 DECLINLINE(uint8_t *) VBoxSHGSMIBufferData (const VBOXSHGSMIHEADER* pHeader) 1047 1059 { 1048 1060 return (uint8_t *)pHeader + sizeof (VBOXSHGSMIHEADER); … … 1234 1246 #endif /* #ifdef VBOXVDMA */ 1235 1247 1248 #ifdef VBOXVDMA_WITH_VBVA 1249 # pragma pack(1) 1250 1251 typedef struct VBOXVDMAVBVACMD 1252 { 1253 HGSMIOFFSET offCmd; 1254 } VBOXVDMAVBVACMD; 1255 1256 #pragma pack() 1236 1257 #endif 1258 1259 #endif
Note:
See TracChangeset
for help on using the changeset viewer.