HomeSort by: relevance | last modified time | path
    Searched refs:attr (Results 1 - 25 of 395) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/examples/
dmxreconfig.c 46 DMXScreenAttributes attr; local
67 attr.screenWindowXoffset = strtol(argv[3], NULL, 0);
68 attr.screenWindowYoffset = strtol(argv[4], NULL, 0);
69 attr.screenWindowWidth = strtol(argv[5], NULL, 0);
70 attr.screenWindowHeight = strtol(argv[6], NULL, 0);
76 attr.rootWindowXoffset = strtol(argv[7], NULL, 0);
77 attr.rootWindowYoffset = strtol(argv[8], NULL, 0);
78 attr.rootWindowWidth = strtol(argv[9], NULL, 0);
79 attr.rootWindowHeight = strtol(argv[10], NULL, 0);
82 attr.rootWindowXorigin = strtol(argv[11], NULL, 0)
    [all...]
dmxaddscreen.c 47 DMXScreenAttributes attr; local
66 attr.screenWindowXoffset = strtol(argv[4], NULL, 0);
67 attr.screenWindowYoffset = strtol(argv[5], NULL, 0);
68 attr.screenWindowWidth = strtol(argv[6], NULL, 0);
69 attr.screenWindowHeight = strtol(argv[7], NULL, 0);
75 attr.rootWindowXoffset = strtol(argv[8], NULL, 0);
76 attr.rootWindowYoffset = strtol(argv[9], NULL, 0);
77 attr.rootWindowWidth = strtol(argv[10], NULL, 0);
78 attr.rootWindowHeight = strtol(argv[11], NULL, 0);
81 attr.rootWindowXorigin = strtol(argv[12], NULL, 0)
    [all...]
dmxresize.c 46 DMXDesktopAttributes attr; local
83 attr.width = width;
84 attr.height = height;
85 attr.shiftX = shiftX;
86 attr.shiftY = shiftY;
87 switch (status = DMXChangeDesktopAttributes(display, mask, &attr)) {
  /xsrc/external/mit/libX11/dist/src/
GetWAttrs.c 35 XWindowAttributes *attr; member in struct:_WAttrsState
49 register XWindowAttributes *attr; local
55 !state->attr &&
62 state->attr = (XWindowAttributes *)NULL;
69 attr = state->attr;
70 attr->class = repl->class;
71 attr->bit_gravity = repl->bitGravity;
72 attr->win_gravity = repl->winGravity;
73 attr->backing_store = repl->backingStore
    [all...]
CrGC.c 167 register XGCValues *attr)
172 if (gv->function != attr->function) {
173 gv->function = attr->function;
178 if (gv->plane_mask != attr->plane_mask) {
179 gv->plane_mask = attr->plane_mask;
184 if (gv->foreground != attr->foreground) {
185 gv->foreground = attr->foreground;
190 if (gv->background != attr->background) {
191 gv->background = attr->background;
196 if (gv->line_width != attr->line_width)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/
tgsi_from_mesa.c 33 tgsi_get_generic_gl_varying_index(gl_varying_slot attr,
36 if (attr >= VARYING_SLOT_VAR0) {
38 return attr - VARYING_SLOT_VAR0;
40 return 9 + (attr - VARYING_SLOT_VAR0);
42 if (attr == VARYING_SLOT_PNTC) {
46 if (attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7) {
48 return attr - VARYING_SLOT_TEX0;
59 tgsi_get_gl_varying_semantic(gl_varying_slot attr,
64 switch (attr) {
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/glx/apple/
apple_visual.c 82 CGLPixelFormatAttribute attr[MAX_ATTR]; local
92 attr[numattr++] = kCGLPFAOffScreen;
97 attr[numattr++] = kCGLPFARendererID;
98 attr[numattr++] = kCGLRendererGenericFloatID;
105 attr[numattr++] = kCGLPFAAccelerated;
113 attr[numattr++] = kCGLPFAClosestPolicy;
116 attr[numattr++] = kCGLPFAStereo;
124 attr[numattr++] = kCGLPFADoubleBuffer;
131 attr[numattr++] = kCGLPFAColorSize;
132 attr[numattr++] = mode->redBits + mode->greenBits + mode->blueBits
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/glx/apple/
apple_visual.c 82 CGLPixelFormatAttribute attr[MAX_ATTR]; local
92 attr[numattr++] = kCGLPFAOffScreen;
97 attr[numattr++] = kCGLPFARendererID;
98 attr[numattr++] = kCGLRendererGenericFloatID;
105 attr[numattr++] = kCGLPFAAccelerated;
113 attr[numattr++] = kCGLPFAClosestPolicy;
116 attr[numattr++] = kCGLPFAStereo;
124 attr[numattr++] = kCGLPFADoubleBuffer;
131 attr[numattr++] = kCGLPFAColorSize;
132 attr[numattr++] = mode->redBits + mode->greenBits + mode->blueBits
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/vbo/
vbo_exec_eval.c 37 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr )
39 assert(attr < ARRAY_SIZE(exec->eval.map1));
40 exec->eval.map1[attr].map = NULL;
43 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr )
45 assert(attr < ARRAY_SIZE(exec->eval.map2));
46 exec->eval.map2[attr].map = NULL;
49 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim,
52 assert(attr < ARRAY_SIZE(exec->eval.map1));
53 if (!exec->eval.map1[attr].map) {
54 exec->eval.map1[attr].map = map
72 GLuint attr; local
129 GLuint attr; local
176 GLuint attr; local
    [all...]
vbo_context.c 41 check_size(const GLfloat *attr)
43 if (attr[3] != 1.0F)
45 if (attr[2] != 0.0F)
47 if (attr[1] != 0.0F)
80 for (int attr = 0; attr < VERT_ATTRIB_MAX; attr++) {
81 if (VERT_BIT(attr) & VERT_BIT_GENERIC_ALL)
84 struct gl_array_attributes *attrib = &vbo->current[attr];
86 init_array(ctx, attrib, check_size(ctx->Current.Attrib[attr]),
99 const unsigned attr = VBO_ATTRIB_GENERIC0 + i; local
117 const unsigned attr = VBO_ATTRIB_MAT_FRONT_AMBIENT + i; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nouveau_render.h 73 #define FOR_EACH_ATTR(render, i, attr) \
74 for (i = 0; attr = (render)->map[i], i < NUM_VERTEX_ATTRS; i++)
76 #define FOR_EACH_BOUND_ATTR(render, i, attr) \
77 for (i = 0; attr = (render)->map[i], i < render->attr_count; i++) \
78 if (attr >= 0)
nouveau_array.h 36 int attr; member in struct:nouveau_array
48 nouveau_init_array(struct nouveau_array *a, int attr, int stride,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nouveau_render.h 73 #define FOR_EACH_ATTR(render, i, attr) \
74 for (i = 0; attr = (render)->map[i], i < NUM_VERTEX_ATTRS; i++)
76 #define FOR_EACH_BOUND_ATTR(render, i, attr) \
77 for (i = 0; attr = (render)->map[i], i < render->attr_count; i++) \
78 if (attr >= 0)
nouveau_array.h 36 int attr; member in struct:nouveau_array
48 nouveau_init_array(struct nouveau_array *a, int attr, int stride,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/
vbo_exec_eval.c 36 static void clear_active_eval1( struct vbo_exec_context *exec, GLuint attr )
38 assert(attr < ARRAY_SIZE(exec->eval.map1));
39 exec->eval.map1[attr].map = NULL;
42 static void clear_active_eval2( struct vbo_exec_context *exec, GLuint attr )
44 assert(attr < ARRAY_SIZE(exec->eval.map2));
45 exec->eval.map2[attr].map = NULL;
48 static void set_active_eval1( struct vbo_exec_context *exec, GLuint attr, GLuint dim,
51 assert(attr < ARRAY_SIZE(exec->eval.map1));
52 if (!exec->eval.map1[attr].map) {
53 exec->eval.map1[attr].map = map
71 GLuint attr; local
127 GLuint attr; local
173 GLuint attr; local
    [all...]
vbo_context.c 40 check_size(const GLfloat *attr)
42 if (attr[3] != 1.0F)
44 if (attr[2] != 0.0F)
46 if (attr[1] != 0.0F)
81 const unsigned attr = VERT_ATTRIB_FF(i); local
82 struct gl_array_attributes *attrib = &vbo->current[attr];
84 init_array(ctx, attrib, check_size(ctx->Current.Attrib[attr]),
85 ctx->Current.Attrib[attr]);
97 const unsigned attr = VBO_ATTRIB_GENERIC0 + i; local
98 struct gl_array_attributes *attrib = &vbo->current[attr];
115 const unsigned attr = VBO_ATTRIB_MAT_FRONT_AMBIENT + i; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xvmc/
attributes.c 79 const char *attr; local
89 attr = XGetAtomName(dpy, attribute);
90 if (!attr)
93 if (strcmp(attr, XV_BRIGHTNESS) == 0)
95 else if (strcmp(attr, XV_CONTRAST) == 0)
97 else if (strcmp(attr, XV_SATURATION) == 0)
99 else if (strcmp(attr, XV_HUE) == 0)
101 else if (strcmp(attr, XV_COLORSPACE) == 0)
115 XVMC_MSG(XVMC_TRACE, "[XvMC] Set attribute %s to value %d.\n", attr, value);
124 const char *attr; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xvmc/
attributes.c 79 const char *attr; local
89 attr = XGetAtomName(dpy, attribute);
90 if (!attr)
93 if (strcmp(attr, XV_BRIGHTNESS) == 0)
95 else if (strcmp(attr, XV_CONTRAST) == 0)
97 else if (strcmp(attr, XV_SATURATION) == 0)
99 else if (strcmp(attr, XV_HUE) == 0)
101 else if (strcmp(attr, XV_COLORSPACE) == 0)
115 XVMC_MSG(XVMC_TRACE, "[XvMC] Set attribute %s to value %d.\n", attr, value);
124 const char *attr; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/
tgsi_from_mesa.c 35 tgsi_get_generic_gl_varying_index(gl_varying_slot attr,
38 if (attr >= VARYING_SLOT_VAR0) {
40 return attr - VARYING_SLOT_VAR0;
42 return 9 + (attr - VARYING_SLOT_VAR0);
44 if (attr == VARYING_SLOT_PNTC) {
48 if (attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7) {
50 return attr - VARYING_SLOT_TEX0;
61 tgsi_get_gl_varying_semantic(gl_varying_slot attr,
66 switch (attr) {
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/
dmxextension.h 95 DMXScreenAttributesPtr attr);
97 DMXWindowAttributesPtr attr);
98 extern void dmxGetDesktopAttributes(DMXDesktopAttributesPtr attr);
101 DMXInputAttributesPtr attr);
102 extern int dmxAddInput(DMXInputAttributesPtr attr, int *deviceId);
116 extern int dmxAttachScreen(int idx, DMXScreenAttributesPtr attr);
dmx.c 82 static void dmxSetScreenAttribute(int bit, DMXScreenAttributesPtr attr,
86 case DMXScreenWindowWidth: attr->screenWindowWidth = value; break;
87 case DMXScreenWindowHeight: attr->screenWindowHeight = value; break;
88 case DMXScreenWindowXoffset: attr->screenWindowXoffset = value; break;
89 case DMXScreenWindowYoffset: attr->screenWindowYoffset = value; break;
90 case DMXRootWindowWidth: attr->rootWindowWidth = value; break;
91 case DMXRootWindowHeight: attr->rootWindowHeight = value; break;
92 case DMXRootWindowXoffset: attr->rootWindowXoffset = value; break;
93 case DMXRootWindowYoffset: attr->rootWindowYoffset = value; break;
94 case DMXRootWindowXorigin: attr->rootWindowXorigin = value; break
297 DMXScreenAttributesRec attr; local
428 DMXScreenAttributesRec attr; local
508 DMXWindowAttributesRec attr; local
535 DMXWindowAttributesRec attr; local
647 DMXDesktopAttributesRec attr; local
681 DMXDesktopAttributesRec attr; local
744 DMXInputAttributesRec attr; local
782 DMXInputAttributesRec attr; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xquartz/
quartzStartup.c 66 pthread_attr_t attr; local
69 pthread_attr_init (&attr);
70 pthread_attr_setscope (&attr, PTHREAD_SCOPE_SYSTEM);
71 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
72 pthread_create (&tid, &attr, func, arg);
73 pthread_attr_destroy (&attr);
  /xsrc/external/mit/xterm/dist/vttests/
16colors.sh 71 0) attr=" ";;
72 1) attr="BO ";;
73 4) attr="UN ";;
74 7) attr="RV ";;
95 $CMD $OPT "${CSI}0;${AT}m$attr$SUF"
8colors.sh 68 0) attr="normal ";;
69 1) attr="bold ";;
70 4) attr="under ";;
71 7) attr="reverse ";;
85 $CMD $OPT "${CSI}0;${AT}m$attr${SUF}"
other-sgr.sh 70 0) attr="normal ";;
71 1) attr="bold ";;
72 4) attr="under ";;
73 5) attr="blink ";;
74 7) attr="reverse ";;
75 8) attr="conceal ";;
96 $CMD $OPT "$GRP:${CSI}${GRP}m$attr${SUF}"

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>