VirtualBox

Changeset 86194 in vbox for trunk/src/VBox/Devices/Graphics


Ignore:
Timestamp:
Sep 21, 2020 12:44:03 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
140452
Message:

Devices/Graphics: doxygen fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r86193 r86194  
    31703170
    31713171
     3172/** @def VMSVGAFIFO_CHECK_3D_CMD_MIN_SIZE_BREAK
     3173 * Check that the 3D command has at least a_cbMin of payload bytes after the
     3174 * header.  Will break out of the switch if it doesn't.
     3175 */
     3176# define VMSVGAFIFO_CHECK_3D_CMD_MIN_SIZE_BREAK(a_cbMin) \
     3177     if (1) { \
     3178          AssertMsgBreak(cbCmd >= (a_cbMin), ("size=%#x a_cbMin=%#zx\n", cbCmd, (size_t)(a_cbMin))); \
     3179          RT_UNTRUSTED_VALIDATED_FENCE(); \
     3180     } else do {} while (0)
     3181
    31723182/** SVGA_3D_CMD_* handler.
    31733183 *
     
    31823192    int rc = VINF_SUCCESS;
    31833193    PVMSVGAR3STATE  pSVGAState = pThisCC->svga.pSvgaR3State;
    3184 
    3185 /** @def VMSVGAFIFO_CHECK_3D_CMD_MIN_SIZE_BREAK
    3186  * Check that the 3D command has at least a_cbMin of payload bytes after the
    3187  * header.  Will break out of the switch if it doesn't.
    3188  */
    3189 # define VMSVGAFIFO_CHECK_3D_CMD_MIN_SIZE_BREAK(a_cbMin) \
    3190      if (1) { \
    3191           AssertMsgBreak(cbCmd >= (a_cbMin), ("size=%#x a_cbMin=%#zx\n", cbCmd, (size_t)(a_cbMin))); \
    3192           RT_UNTRUSTED_VALIDATED_FENCE(); \
    3193      } else do {} while (0)
    31943194
    31953195     switch (cmdId)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette