HomeSort by: relevance | last modified time | path
    Searched defs:colors (Results 1 - 25 of 80) sorted by relevancy

1 2 3 4

  /xsrc/external/mit/MesaLib/dist/src/freedreno/rnn/
rnndec.h 29 #include "colors.h"
41 const struct envy_colors *colors; member in struct:rnndeccontext
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
i915_state_derived.c 49 bool colors[2], fog, needW, face; local
53 colors[0] = colors[1] = fog = needW = face = false;
68 colors[fs->info.input_semantic_index[i]] = true;
106 if (colors[0]) {
113 if (colors[1]) {
  /xsrc/external/mit/mesa-demos/dist/src/egl/opengl/
egltri.c 48 static const GLfloat colors[3][3] = { local
63 glColorPointer(3, GL_FLOAT, 0, colors);
eglkms.c 107 static const GLfloat colors[3][3] = { local
133 glColorPointer(3, GL_FLOAT, 0, colors);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
i915_state_derived.c 61 boolean texCoords[I915_TEX_UNITS], colors[2], fog, needW, face; local
66 colors[0] = colors[1] = fog = needW = face = FALSE;
82 colors[fs->info.input_semantic_index[i]] = TRUE;
123 if (colors[0]) {
130 if (colors[1]) {
  /xsrc/external/mit/mesa-demos/dist/src/redbook/
varray.c 65 static GLfloat colors[] = {1.0, 0.2, 0.2, local
76 glColorPointer (3, GL_FLOAT, 0, colors);
  /xsrc/external/mit/xorg-server/dist/hw/kdrive/src/
kcmap.c 38 xrgb colors[KD_MAX_PSEUDO_SIZE]; local
61 QueryColors(pCmap, (1 << pScreenPriv->screen->fb.depth), pixels, colors,
66 defs[i].red = colors[i].red;
67 defs[i].green = colors[i].green;
68 defs[i].blue = colors[i].blue;
78 * When the hardware is enabled, save the hardware colors and store
  /xsrc/external/mit/xorg-server.old/dist/hw/kdrive/src/
kcmap.c 38 xrgb colors[KD_MAX_PSEUDO_SIZE]; local
61 QueryColors (pCmap, (1 << pScreenPriv->screen->fb.depth), pixels, colors, serverClient);
66 defs[i].red = colors[i].red;
67 defs[i].green = colors[i].green;
68 defs[i].blue = colors[i].blue;
82 * When the hardware is enabled, save the hardware colors and store
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_two_sided_color.c 39 } colors[MAX_COLORS]; member in struct:__anon790
101 assert(state->colors_count < ARRAY_SIZE(state->colors));
102 state->colors[state->colors_count].front = var;
116 if (state->colors[i].front->data.location == VARYING_SLOT_COL0)
121 state->colors[i].back = create_input(
123 state->colors[i].front->data.interpolation);
148 state->colors[idx].front->data.driver_location;
160 unsigned loc = state->colors[idx].front->data.location;
185 front = nir_load_var(b, state->colors[idx].front);
186 back = nir_load_var(b, state->colors[idx].back)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_lower_two_sided_color.c 38 } colors[MAX_COLORS]; member in struct:__anon3407
101 assert(state->colors_count < ARRAY_SIZE(state->colors));
102 state->colors[state->colors_count].front = var;
116 if (state->colors[i].front->data.location == VARYING_SLOT_COL0)
121 state->colors[i].back = create_input(
123 state->colors[i].front->data.interpolation);
147 state->colors[idx].front->data.driver_location;
165 nir_ssa_def *front = load_input(b, state->colors[idx].front);
166 nir_ssa_def *back = load_input(b, state->colors[idx].back);
  /xsrc/external/mit/ctwm/dist/
mask_screen.c 126 XColor colors [256], stdcolors [256]; local
139 colors [i].pixel = i;
141 XQueryColors(dpy, cmap, colors, 256);
146 colors [i].pixel = i;
147 colors [i].flags = DoRed | DoGreen | DoBlue;
148 stdcolors [i].red = colors [i].red;
149 stdcolors [i].green = colors [i].green;
150 stdcolors [i].blue = colors [i].blue;
154 colors [j].red = stdcolors [j].red * ((127.0 - i) / 128.0);
155 colors [j].green = stdcolors [j].green * ((127.0 - i) / 128.0)
    [all...]
image_xwd.c 20 static void compress(XImage *image, XColor *colors, int *ncolors);
50 XColor colors [256]; local
135 colors [i].pixel = xwdcolors [i].pixel;
136 colors [i].red = xwdcolors [i].red;
137 colors [i].green = xwdcolors [i].green;
138 colors [i].blue = xwdcolors [i].blue;
139 colors [i].flags = xwdcolors [i].flags;
140 colors [i].pad = xwdcolors [i].pad;
176 compress(image, colors, &ncolors);
180 XAllocColor(dpy, cmap, &(colors [i]))
    [all...]
  /xsrc/external/mit/freetype/dist/src/sfnt/
ttcpal.c 52 FT_Byte* colors; /* RGBA array of colors */ member in struct:Cpal_
127 cpal->colors = (FT_Byte*)( table + colors_offset );
285 p = cpal->colors + COLOR_SIZE * color_index;
  /xsrc/external/mit/mesa-demos/dist/src/egl/opengles1/
tri.c 57 static const GLfixed colors[3][4] = { local
68 static const GLfloat colors[3][4] = {
85 glColorPointer(4, GL_FIXED, 0, colors);
88 glColorPointer(4, GL_FLOAT, 0, colors);
  /xsrc/external/mit/MesaLib/dist/src/gallium/targets/haiku-softpipe/
SoftwareRenderer.cpp 47 int32 *colors; member in struct:RasBuf32
49 RasBuf32(int32 width, int32 height, int32 stride, int32 orgX, int32 orgY, int32 *colors):
50 width(width), height(height), stride(stride), orgX(orgX), orgY(orgY), colors(colors)
60 colors = (int32*)bmp->Bits();
70 colors = (int32*)info->bits;
80 colors += y*stride + x;
84 width = 0; height = 0; colors = NULL;
107 *dst.colors++ = color;
108 dst.colors += dst.stride
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/glsl/
blinking-teapot.c 37 static const GLfloat colors[] = variable
88 glBufferData (GL_UNIFORM_BUFFER, 80, colors, GL_DYNAMIC_DRAW);
  /xsrc/external/mit/mesa-demos/dist/src/tests/
mipmap_tunnel.c 64 static const GLubyte colors[12][3] = { local
81 MakeImage(i, sz, sz, colors[i]);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/
nv50_shader_state.c 437 uint32_t colors = fp->fp.colors; local
468 colors |= m << 8; /* adjust BFC0 id */
482 colors += m - 4; /* adjust FFC0 id */
521 colors |= NV50_3D_SEMANTIC_COLOR_CLMP_EN;
571 PUSH_DATA (push, colors);
587 nv50->state.semantic_color = colors;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/
nvc0_program.h 50 uint8_t colors; member in struct:nvc0_program::__anon1421
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
vl_compositor.h 84 struct vertex4f colors[4]; member in struct:vl_compositor_layer
252 struct vertex4f *colors);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv50/
nv50_shader_state.c 432 uint32_t colors = fp->fp.colors; local
463 colors |= m << 8; /* adjust BFC0 id */
477 colors += m - 4; /* adjust FFC0 id */
516 colors |= NV50_3D_SEMANTIC_COLOR_CLMP_EN;
566 PUSH_DATA (push, colors);
582 nv50->state.semantic_color = colors;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nvc0/
nvc0_program.c 141 unsigned colors[8] = {0}; local
144 colors[info->out[i].si] = 1;
146 if (colors[i])
147 colors[i] = c++;
151 info->out[i].slot[c] = colors[info->out[i].si] * 4 + c;
459 fp->fp.colors |= 1 << info->in[i].si;
nvc0_program.h 47 uint8_t colors; member in struct:nvc0_program::__anon3858
  /xsrc/external/mit/libXmu/dist/src/
StrToCurs.c 316 XColor colors[2]; local
342 colors[0].pixel = fg;
343 colors[1].pixel = bg;
345 XQueryColors (dpy, c_map, colors, 2);
346 XRecolorCursor(dpy, cursor, colors, colors + 1);
  /xsrc/external/mit/mesa-demos/dist/src/demos/
cubemap.c 423 static const GLubyte colors[6][3] = { local
453 image[i][j][0] = colors[f][2];
454 image[i][j][1] = colors[f][1];
455 image[i][j][2] = colors[f][0];

Completed in 17 milliseconds

1 2 3 4