Changeset 68994 in vbox
- Timestamp:
- Oct 5, 2017 2:20:22 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118263
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-info.cpp
r65381 r68994 1270 1270 break; 1271 1271 default: 1272 AssertFailed(); 1272 AssertFailed(); /* Fall through */ 1273 1273 case 'b': //SVGA3dBlendOp 1274 1274 case 'e': //SVGA3dBlendEquation -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r68083 r68994 4202 4202 if (pContext->state.aRenderState[SVGA3D_RS_BLENDENABLE].uintValue != 0) 4203 4203 continue; /* ignore if blend is already enabled */ 4204 /* no break */ 4205 } 4204 } /* Fall through */ 4206 4205 4207 4206 case SVGA3D_RS_BLENDENABLE: /* SVGA3dBool */ … … 5797 5796 case SVGA3D_DECLTYPE_UBYTE4N: 5798 5797 normalized = GL_TRUE; 5799 /* no break*/5798 /* Fall through */ 5800 5799 case SVGA3D_DECLTYPE_UBYTE4: 5801 5800 size = 4; … … 5805 5804 case SVGA3D_DECLTYPE_SHORT2N: 5806 5805 normalized = GL_TRUE; 5807 /* no break*/5806 /* Fall through */ 5808 5807 case SVGA3D_DECLTYPE_SHORT2: 5809 5808 size = 2; … … 5813 5812 case SVGA3D_DECLTYPE_SHORT4N: 5814 5813 normalized = GL_TRUE; 5815 /* no break*/5814 /* Fall through */ 5816 5815 case SVGA3D_DECLTYPE_SHORT4: 5817 5816 size = 4; … … 6208 6207 case SVGA3D_DECLUSAGE_POSITIONT: 6209 6208 Log(("ShaderSetPositionTransformed: (%d,%d)\n", pContext->state.RectViewPort.w, pContext->state.RectViewPort.h)); 6209 /* Fall through */ 6210 6210 case SVGA3D_DECLUSAGE_POSITION: 6211 6211 ShaderSetPositionTransformed(pContext->pShaderContext, pContext->state.RectViewPort.w, -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-savedstate.cpp
r65381 r68994 756 756 default: 757 757 AssertFailed(); 758 /* no break*/758 /* Fall through */ 759 759 case SVGA3D_SURFACE_HINT_DEPTHSTENCIL: 760 760 case SVGA3D_SURFACE_HINT_DEPTHSTENCIL | SVGA3D_SURFACE_HINT_TEXTURE: -
trunk/src/VBox/Devices/Graphics/shaderlib/glsl_shader.c
r62948 r68994 519 519 break; 520 520 } 521 } 521 } /* Fall through */ 522 522 523 523 case HEAP_NODE_TRAVERSE_RIGHT: … … 535 535 break; 536 536 } 537 } 537 } /* Fall through */ 538 538 539 539 case HEAP_NODE_POP: … … 595 595 break; 596 596 } 597 } 597 } /* Fall through */ 598 598 599 599 case HEAP_NODE_TRAVERSE_RIGHT: … … 610 610 break; 611 611 } 612 } 612 } /* Fall through */ 613 613 614 614 case HEAP_NODE_POP:
Note:
See TracChangeset
for help on using the changeset viewer.