operator + method

PvrtcColorRgb operator +(
  1. PvrtcColorRgb x
)

Implementation

PvrtcColorRgb operator +(PvrtcColorRgb x) =>
    PvrtcColorRgb(r + x.r, g + x.g, b + x.b);