Changeset 88835 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d.h
- Timestamp:
- May 3, 2021 1:25:16 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d.h
r88831 r88835 40 40 /** Arbitrary upper limit. [0,15] is enough for 2^15=32768x32768. */ 41 41 #define SVGA3D_MAX_MIP_LEVELS 16 42 43 44 /**@def FLOAT_FMT_STR45 * Format string bits to go with FLOAT_FMT_ARGS. */46 #define FLOAT_FMT_STR "%s%u.%06u"47 /** @def FLOAT_FMT_ARGS48 * Format arguments for a float value, corresponding to FLOAT_FMT_STR.49 * @param r The floating point value to format. */50 #define FLOAT_FMT_ARGS(r) (r) >= 0.0f ? "" : "-", (unsigned)RT_ABS(r), (unsigned)(RT_ABS((r) - (unsigned)(r)) * 1000000.0f)51 42 52 43
Note:
See TracChangeset
for help on using the changeset viewer.