minor redundancy cleanup
This commit is contained in:
parent
d17a51bc59
commit
998246efc2
1 changed files with 2 additions and 12 deletions
|
@ -418,14 +418,6 @@ uint BitsBracket(uint bits, uint pos) {
|
||||||
}
|
}
|
||||||
|
|
||||||
uint BitsOp(uint bits, uint start, uint end) {
|
uint BitsOp(uint bits, uint start, uint end) {
|
||||||
if (start == end) {
|
|
||||||
return BitsBracket(bits, start);
|
|
||||||
} else if (start > end) {
|
|
||||||
uint t = start;
|
|
||||||
start = end;
|
|
||||||
end = t;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint mask = (1 << (end - start + 1)) - 1;
|
uint mask = (1 << (end - start + 1)) - 1;
|
||||||
return ((bits >> start) & mask);
|
return ((bits >> start) & mask);
|
||||||
}
|
}
|
||||||
|
@ -665,10 +657,8 @@ ivec2 BitTransferSigned(int a, int b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
uvec4 ClampByte(ivec4 color) {
|
uvec4 ClampByte(ivec4 color) {
|
||||||
for (uint i = 0; i < 4; ++i) {
|
const uvec4 clamped = uvec4(clamp(color, 0, 255));
|
||||||
color[i] = (color[i] < 0) ? 0 : ((color[i] > 255) ? 255 : color[i]);
|
return clamped;
|
||||||
}
|
|
||||||
return uvec4(color);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ivec4 BlueContract(int a, int r, int g, int b) {
|
ivec4 BlueContract(int a, int r, int g, int b) {
|
||||||
|
|
Loading…
Reference in a new issue