Home | History | Annotate | Download | only in referencerenderer

Lines Matching full:newvalue

43 // Return oldValue with the bits indicated by mask replaced by corresponding bits of newValue.
44 static inline int maskedBitReplace (int oldValue, int newValue, deUint32 mask)
46 return (oldValue & ~mask) | (newValue & mask);