fix whitespacing

SVN revision: 17483
This commit is contained in:
Mike Frysinger 2005-10-13 02:09:03 +00:00
parent 388caefdcf
commit db7746fa21
1 changed files with 4 additions and 4 deletions

View File

@ -74,22 +74,22 @@ const vector signed short c16 = (vector signed short)(16);
const vector unsigned char zero = (vector unsigned char)(0);
const vector signed short maxchar = (vector signed short)(255);
const vector unsigned char pickrg1 = (vector unsigned char)
(0, 0x1, 0x11, 0,
(0, 0x1, 0x11, 0,
0, 0x3, 0x13, 0,
0, 0x5, 0x15, 0,
0, 0x7, 0x17, 0);
const vector unsigned char pickrg2 = (vector unsigned char)
(0, 0x9, 0x19, 0,
(0, 0x9, 0x19, 0,
0, 0xb, 0x1b, 0,
0, 0xd, 0x1d, 0,
0, 0xf, 0x1f, 0);
const vector unsigned char pickrgb1 = (vector unsigned char)
(0x3, 0x1, 0x2, 0x11,
(0x3, 0x1, 0x2, 0x11,
0x7, 0x5, 0x6, 0x13,
0xb, 0x9, 0xa, 0x15,
0xf, 0xd, 0xe, 0x17);
const vector unsigned char pickrgb2 = (vector unsigned char)
(0x3, 0x1, 0x2, 0x19,
(0x3, 0x1, 0x2, 0x19,
0x7, 0x5, 0x6, 0x1b,
0xb, 0x9, 0xa, 0x1d,
0xf, 0xd, 0xe, 0x1f);