Changeset 93307 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win-d3d9.cpp
- Timestamp:
- Jan 18, 2022 11:31:09 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win-d3d9.cpp
r93115 r93307 926 926 */ 927 927 float const xLeft = -0.5f; 928 float const xRight = ( cWidth - 1) - 0.5f;928 float const xRight = (float)(cWidth - 1) - 0.5f; 929 929 float const yTop = -0.5f; 930 float const yBottom = ( cHeight - 1) - 0.5f;930 float const yBottom = (float)(cHeight - 1) - 0.5f; 931 931 932 932 Vertex const aVertices[] =
Note:
See TracChangeset
for help on using the changeset viewer.