Home | History | Annotate | Download | only in dga

Lines Matching full:xcmap

997 	XColor  *xcmap;
1003 xcmap = SDL_stack_alloc(XColor, ncolors);
1005 xcmap[i].pixel = firstcolor + i;
1006 xcmap[i].red = (colors[i].r<<8)|colors[i].r;
1007 xcmap[i].green = (colors[i].g<<8)|colors[i].g;
1008 xcmap[i].blue = (colors[i].b<<8)|colors[i].b;
1009 xcmap[i].flags = (DoRed|DoGreen|DoBlue);
1012 XStoreColors(DGA_Display, DGA_colormap, xcmap, ncolors);
1015 SDL_stack_free(xcmap);
1024 XColor xcmap[256];
1040 xcmap[i].pixel = SDL_MapRGB(this->screen->format, c, c, c);
1041 xcmap[i].red = ramp[0*256+c];
1042 xcmap[i].green = ramp[1*256+c];
1043 xcmap[i].blue = ramp[2*256+c];
1044 xcmap[i].flags = (DoRed|DoGreen|DoBlue);
1047 XStoreColors(DGA_Display, DGA_colormap, xcmap, ncolors);