Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > d97979da6a9ddf865b7adda2d0908450 > files > 23

gluegen-manual-1.0b06-0.0.11.mga5.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 ... */
}