Changeset 84914 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 23, 2020 10:19:17 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r84888 r84914 4518 4518 break; 4519 4519 } 4520 /* @note only front and back faces*/4521 A ssert(mode.s.face == SVGA3D_FACE_FRONT_BACK);4520 /* Only front and back faces. Also recent Mesa guest drivers initialize the 'face' to zero. */ 4521 ASSERT_GUEST(mode.s.face == SVGA3D_FACE_FRONT_BACK || mode.s.face == SVGA3D_FACE_INVALID); 4522 4522 glPolygonMode(GL_FRONT_AND_BACK, val); 4523 4523 VMSVGA3D_CHECK_LAST_ERROR(pState, pContext);
Note:
See TracChangeset
for help on using the changeset viewer.