VirtualBox

Ignore:
Timestamp:
Oct 11, 2017 4:11:23 PM (7 years ago)
Author:
vboxsync
Message:

Global: replace fall-through comments with RT_FALL_THRU().
bugref:8192: gcc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/OpenGL/packer/pack_client.c

    r65643 r69046  
    109109                        crPackVertexAttrib4usvARB(attr, usPtr);
    110110                        break;
    111                     case 3: usv[2] = usPtr[2]; /* fall thru */
    112                     case 2: usv[1] = usPtr[1]; /* fall thru */
     111                    case 3: usv[2] = usPtr[2]; RT_FALL_THRU();
     112                    case 2: usv[1] = usPtr[1]; RT_FALL_THRU();
    113113                    case 1:
    114114                        usv[0] = usPtr[0];
     
    148148                        crPackVertexAttrib4ivARB(attr, iPtr);
    149149                        break;
    150                     case 3: iv[2] = iPtr[2]; /* fall thru */
    151                     case 2: iv[1] = iPtr[1]; /* fall thru */
     150                    case 3: iv[2] = iPtr[2]; RT_FALL_THRU();
     151                    case 2: iv[1] = iPtr[1]; RT_FALL_THRU();
    152152                    case 1:
    153153                        iv[0] = iPtr[0];
     
    187187                        crPackVertexAttrib4uivARB(attr, uiPtr);
    188188                        break;
    189                     case 3: uiv[2] = uiPtr[2]; /* fall thru */
    190                     case 2: uiv[1] = uiPtr[1]; /* fall thru */
     189                    case 3: uiv[2] = uiPtr[2]; RT_FALL_THRU();
     190                    case 2: uiv[1] = uiPtr[1]; RT_FALL_THRU();
    191191                    case 1:
    192192                        uiv[0] = uiPtr[0];
     
    244244                        crPackVertexAttrib4bvARB(attr, bPtr);
    245245                        break;
    246                     case 3: bv[2] = bPtr[2]; /* fall thru */
    247                     case 2: bv[1] = bPtr[1]; /* fall thru */
     246                    case 3: bv[2] = bPtr[2]; RT_FALL_THRU();
     247                    case 2: bv[1] = bPtr[1]; RT_FALL_THRU();
    248248                    case 1:
    249249                        bv[0] = bPtr[0];
     
    283283                        crPackVertexAttrib4ubvARB(attr, ubPtr);
    284284                        break;
    285                     case 3: ubv[2] = ubPtr[2]; /* fall thru */
    286                     case 2: ubv[1] = ubPtr[1]; /* fall thru */
     285                    case 3: ubv[2] = ubPtr[2]; RT_FALL_THRU();
     286                    case 2: ubv[1] = ubPtr[1]; RT_FALL_THRU();
    287287                    case 1:
    288288                        ubv[0] = ubPtr[0];
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