Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-release > by-pkgid > 50448878465f9d3eafc960e948b0fa56 > files > 23

gluegen-manual-1.0b06-0.0.14.mga6.noarch.rpm

static ScreenInfo default;
static int initialized = 0;

ScreenInfo* default_screen_depth() {
  if (!initialized) {
    default.redBits = 8;
    default.greenBits = 8;
    default.blueBits = 8;
    initialized = 1;
  }
  return &default;
}

void set_screen_depth(ScreenInfo* info) {
  /* Do something ... */
}