Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > e800b5a81c2e82694e475b2db24c4c33 > files > 21

gluegen-manual-1-0.20102502svn11.fc14.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 ... */
}