VirtualBox

Ignore:
Timestamp:
Feb 14, 2010 9:35:03 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
57680
Message:

Frontends: tabs -> spaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/shaders/splitBGRA.c

    r22776 r26509  
    22{
    33    int pix = int(coord);
    4         float part = coord - float(pix);
    5         if(part < 0.25)
    6                 return color.b;
    7         if(part < 0.5)
    8                 return color.g;
    9         if(part < 0.75)
    10                 return color.r;
    11         return color.a;
     4    float part = coord - float(pix);
     5    if(part < 0.25)
     6        return color.b;
     7    if(part < 0.5)
     8        return color.g;
     9    if(part < 0.75)
     10        return color.r;
     11    return color.a;
    1212}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette