Changeset 102504 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Dec 6, 2023 2:47:17 PM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160648
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/vmsvga_include/vbsvga3d_dx.h
r102406 r102504 268 268 VBSVGA3dVideoProcessorStreamSetMask SetMask; 269 269 270 uint32 SourceRectEnable : 1; 271 uint32 DestRectEnable : 1; 272 uint32 AlphaEnable : 1; 273 uint32 AspectRatioEnable : 1; 274 uint32 LumaKeyEnable : 1; 275 uint32 StereoFormatEnable : 1; 276 uint32 AutoProcessingModeEnable : 1; 277 uint32 RotationEnable : 1; 270 union { 271 uint32 value; 272 struct { 273 uint32 SourceRectEnable : 1; 274 uint32 DestRectEnable : 1; 275 uint32 AlphaEnable : 1; 276 uint32 AspectRatioEnable : 1; 277 uint32 LumaKeyEnable : 1; 278 uint32 StereoFormatEnable : 1; 279 uint32 AutoProcessingModeEnable : 1; 280 uint32 RotationEnable : 1; 281 }; 282 }; 278 283 279 284 VBSVGA3dVideoFrameFormat FrameFormat; … … 292 297 float LumaKeyUpper; 293 298 VBSVGA3dVideoProcessorStereoFormat StereoFormat; 294 uint32 LeftViewFrame0 : 1; 295 uint32 BaseViewFrame0 : 1; 299 uint8 LeftViewFrame0; 300 uint8 BaseViewFrame0; 301 uint8 pad[2]; 296 302 VBSVGA3dVideoProcessorStereoFlipMode FlipMode; 297 303 int32 MonoOffset; … … 315 321 VBSVGA3dVideoProcessorOutputSetMask SetMask; 316 322 317 uint32 TargetRectEnable : 1; 318 uint32 BackgroundColorYCbCr : 1; 319 uint32 ConstrictionEnable : 1; 320 uint32 StereoModeEnable : 1; 323 union { 324 uint32 value; 325 struct { 326 uint32 TargetRectEnable : 1; 327 uint32 BackgroundColorYCbCr : 1; 328 uint32 ConstrictionEnable : 1; 329 uint32 StereoModeEnable : 1; 330 }; 331 }; 321 332 322 333 SVGASignedRect TargetRect;
Note:
See TracChangeset
for help on using the changeset viewer.