gsDarker function

int gsDarker(
  1. int r,
  2. int g,
  3. int b
)

Implementation

int gsDarker(int r, int g, int b) => min(r, min(g, b));