| /xsrc/external/mit/xterm/dist/ |
| 88colres.pl | 47 our ( $red, $green, $blue, $gray ); 83 for ($gray = 0; $gray < 8; $gray++) { 84 $level = ($gray * 23.18181818) + 46.36363636; 85 if( $gray > 0 ) { $level += 23.18181818; } 86 $code = 80 + $gray;
|
| 256colres.pl | 45 our ( $red, $green, $blue, $gray ); 81 for ($gray = 0; $gray < 24; $gray++) { 82 $level = ($gray * 10) + 8; 83 $code = 232 + $gray;
|
| /xsrc/external/mit/xterm/dist/vttests/ |
| 88colors2.pl | 70 our ( $gray, $level, $color ); 197 for ( $gray = 0 ; $gray < 8 ; $gray++ ) { 198 $level = ( map_gray($gray) * 23.18181818 ) + 46.36363636; 199 if ( $gray > 0 ) { $level += 23.18181818; } 200 &define_color( 80 + $gray, int($level), int($level), int($level) );
|
| 256colors2.pl | 69 our ( $gray, $level, $color ); 196 for ( $gray = 0 ; $gray < 24 ; $gray++ ) { 197 $level = ( map_gray($gray) * 10 ) + 8; 198 &define_color( 232 + $gray, $level, $level, $level );
|
| /xsrc/external/mit/xorg-server/dist/render/ |
| miindex.c | 52 int cube, gray; local 97 * Compute size of cube and gray ramps 99 cube = gray = 0; 116 * Figure out how many gray levels to use so that they 122 gray = needed / (cube - 1); 124 gray = (gray + 1) * (cube - 1) + 1; 127 gray = pColormap->pVisual->ColormapEntries; 134 gray = NUM_GRAY_LEVELS; 138 gray = 2 [all...] |
| /xsrc/external/mit/xorg-server.old/dist/render/ |
| miindex.c | 52 int cube, gray; local 99 * Compute size of cube and gray ramps 101 cube = gray = 0; 118 * Figure out how many gray levels to use so that they 125 gray = needed / (cube - 1); 127 gray = (gray + 1) * (cube - 1) + 1; 130 gray = pColormap->pVisual->ColormapEntries; 137 gray = NUM_GRAY_LEVELS; 141 gray = 2 [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| front-back-modes.c | 161 static const float gray[4] = {0.2, 0.2, 0.2, 1.0}; local 163 glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT, gray);
|
| stencilreaddraw.c | 151 const GLfloat gray[4] = {0.2, 0.2, 0.2, 1.0}; local 165 glLightfv(GL_LIGHT0, GL_AMBIENT, gray);
|
| zreaddraw.c | 185 const GLfloat gray[4] = {0.2, 0.2, 0.2, 1.0}; local 197 glLightfv(GL_LIGHT0, GL_AMBIENT, gray);
|
| /xsrc/external/mit/mesa-demos/dist/src/demos/ |
| copypix.c | 196 int gray = Image[i*3] + Image[i*3+1] + Image[i*3+2]; local 197 indexImage[i] = gray / 3;
|
| drawpix.c | 267 int gray = Image[i*3] + Image[i*3+1] + Image[i*3+2]; local 268 indexImage[i] = gray / 3;
|
| texcyl.c | 225 GLfloat gray[4] = {0.2, 0.2, 0.2, 1.0}; local 229 glLightfv(GL_LIGHT0, GL_AMBIENT, gray);
|
| readpix.c | 339 int gray = Image[i*3] + Image[i*3+1] + Image[i*3+2]; local 340 indexImage[i] = gray / 3;
|
| reflect.c | 130 static GLfloat gray[] = { 0.4, 0.4, 0.4, 1.0 }; local 138 /*glMaterialfv( GL_FRONT, GL_EMISSION, gray );*/ 140 glMaterialfv( GL_FRONT, GL_AMBIENT, gray );
|
| stex3d.c | 598 static const GLfloat gray[] = { 0.6, 0.6, 0.6, 0.0 }; local 622 glLightfv(GL_LIGHT1, GL_AMBIENT, gray);
|
| /xsrc/external/mit/mesa-demos/dist/src/redbook/ |
| polyoff.c | 60 /* display() draws two spheres, one with a gray, diffuse material, 65 GLfloat gray[] = { 0.8, 0.8, 0.8, 1.0 }; local 74 glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, gray);
|
| /xsrc/external/mit/ctwm/dist/ |
| twm_window_struct.h | 71 Pixmap gray; member in struct:TwmWindow
|
| win_ops.c | 53 * single global 'gray' pixmap; I don't think it actually 58 XSetWindowBorderPixmap(dpy, tmp_win->frame, tmp_win->gray); 60 XSetWindowBorderPixmap(dpy, tmp_win->title_w, tmp_win->gray);
|
| add_window.c | 1623 which = "gray"; 1625 tmp_win->gray = mk_blackgray_pixmap(which, vroot, 1633 tmp_win->gray = None;
|
| /xsrc/external/mit/xsetroot/dist/ |
| xsetroot.c | 47 #include "X11/bitmaps/gray" 88 " -gray, -grey Make the entire background grey\n" 116 int gray = 0; local 200 if (!strcmp("-gray", argv[i]) || !strcmp("-grey", argv[i])) { 201 gray = 1; 235 fprintf(stderr, "%s: choose only one of {solid, gray, bitmap, mod}\n", 281 /* Handle -gray and -grey options */ 282 if (gray) {
|
| /xsrc/external/mit/twm/dist/src/ |
| twm.h | 242 Pixmap gray; member in struct:TwmWindow
|
| add_window.c | 864 tmp_win->gray = XCreatePixmapFromBitmapData(dpy, Scr->Root, 874 tmp_win->gray = None; 1119 * use a nice, even gray pattern. The old horizontal lines look really
|
| events.c | 1245 if (Tmp_win->gray) 1246 XFreePixmap(dpy, Tmp_win->gray);
|
| /xsrc/external/mit/xorg-server.old/dist/hw/kdrive/fbdev/ |
| fbdev.c | 156 Bool gray; local 218 gray = priv->var.grayscale; 222 if (gray) 241 if (gray)
|
| /xsrc/external/mit/mesa-demos/dist/src/samples/ |
| quad.c | 33 #define GRAY 128 53 float gray[3] = { variable
|