Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 536e09124c5c50971569b37732164cf1 > files > 27

gluegen2-2.0.2-9.mga4.x86_64.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 ... */
}