Searched refs:fill (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/
H A Dstar-oddeven.c10 VGPaint fill; variable in typeref:typename:VGPaint
23 VGPaint fill; local in function:draw_point
29 fill = vgCreatePaint();
30 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, black_color);
31 vgSetPaint(fill, VG_FILL_PATH);
36 vgDestroyPaint(fill);
66 fill = vgCreatePaint();
67 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, green_color);
68 vgSetPaint(fill, VG_FILL_PATH);
88 vgSetPaint(fill, VG_FILL_PAT
[all...]
H A Droundedrect.c9 VGPaint fill; variable in typeref:typename:VGPaint
40 fill = vgCreatePaint();
41 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color);
42 vgSetPaint(fill, VG_FILL_PATH);
H A Dstar-nonzero.c9 VGPaint fill; variable in typeref:typename:VGPaint
26 fill = vgCreatePaint();
27 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, green_color);
28 vgSetPaint(fill, VG_FILL_PATH);
H A Dgradorigin.c11 static VGPaint fill; variable in typeref:typename:VGPaint
34 fill = vgCreatePaint();
35 if (fill == VG_INVALID_HANDLE) {
45 vgSetPaint(fill, VG_FILL_PATH);
46 vgSetParameteri(fill, VG_PAINT_TYPE, VG_PAINT_TYPE_LINEAR_GRADIENT);
47 vgSetParameteri(fill, VG_PAINT_COLOR_RAMP_SPREAD_MODE,
49 vgSetParameterfv(fill, VG_PAINT_LINEAR_GRADIENT, 4, linearGradient);
50 vgSetParameterfv(fill, VG_PAINT_COLOR_RAMP_STOPS, 20, rampStop);
H A Dcoord.c9 VGPaint fill; variable in typeref:typename:VGPaint
34 fill = vgCreatePaint();
35 if (fill == VG_INVALID_HANDLE) {
40 vgSetPaint(fill, VG_FILL_PATH);
41 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, fillColor);
42 vgSetParameteri(fill, VG_PAINT_TYPE, VG_PAINT_TYPE_COLOR);
H A Dlingrad.c11 static VGPaint fill; variable in typeref:typename:VGPaint
31 fill = vgCreatePaint();
32 vgSetPaint(fill, VG_FILL_PATH);
34 vgSetParameteri(fill, VG_PAINT_TYPE, VG_PAINT_TYPE_LINEAR_GRADIENT);
35 vgSetParameteri(fill, VG_PAINT_COLOR_RAMP_SPREAD_MODE, spread);
36 vgSetParameterfv(fill, VG_PAINT_LINEAR_GRADIENT, 4, linearGradient);
37 vgSetParameterfv(fill, VG_PAINT_COLOR_RAMP_STOPS, 20, rampStop);
H A Dradialgrad.c11 static VGPaint fill; variable in typeref:typename:VGPaint
35 fill = vgCreatePaint();
36 vgSetPaint(fill, VG_FILL_PATH);
38 vgSetParameteri(fill, VG_PAINT_TYPE, VG_PAINT_TYPE_RADIAL_GRADIENT);
39 vgSetParameteri(fill, VG_PAINT_COLOR_RAMP_SPREAD_MODE, spread);
40 vgSetParameterfv(fill, VG_PAINT_RADIAL_GRADIENT, 5, radialGradient);
41 vgSetParameterfv(fill, VG_PAINT_COLOR_RAMP_STOPS, 20, rampStop);
H A Ddash.c11 VGPaint fill; variable in typeref:typename:VGPaint
35 fill = vgCreatePaint();
36 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color);
37 vgSetPaint(fill, VG_FILL_PATH);
H A Dlineto.c9 VGPaint fill; variable in typeref:typename:VGPaint
21 fill = vgCreatePaint();
22 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color);
23 vgSetPaint(fill, VG_FILL_PATH);
H A Dmask.c9 VGPaint fill; variable in typeref:typename:VGPaint
21 fill = vgCreatePaint();
22 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color);
23 vgSetPaint(fill, VG_FILL_PATH);
H A Dstroke.c11 VGPaint fill; variable in typeref:typename:VGPaint
38 fill = vgCreatePaint();
39 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color);
40 vgSetPaint(fill, VG_FILL_PATH);
H A Dmask4.c81 VGPaint fill; local in function:draw
90 fill = vgCreatePaint();
91 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color);
92 vgSetPaint(fill, VG_FILL_PATH);
122 vgDestroyPaint(fill);
/xsrc/external/mit/pixman/dist/test/
H A Dregion-fractional-test.c27 pixman_image_t *image, *fill; local in function:main
86 fill = pixman_image_create_solid_fill (&white);
110 fill, NULL, image,
122 pixman_image_unref (fill);
H A Dregion-test.c27 pixman_image_t *image, *fill; local in function:main
86 fill = pixman_image_create_solid_fill (&white);
110 fill, NULL, image,
122 pixman_image_unref (fill);
/xsrc/external/mit/ctwm/dist/
H A Ddrawing.h12 ColorPair cp, ButtonState state, bool fill, bool forcebw);
/xsrc/external/mit/pixman/dist/demos/
H A Dcheckerboard.c44 pixman_image_t *fill; local in function:main
51 fill = pixman_image_create_solid_fill (c);
53 pixman_image_composite (PIXMAN_OP_SRC, fill, NULL, checkerboard,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_pipe_rasterizer.c68 translate_fill_mode(unsigned fill) argument
70 switch (fill) {
78 assert(!"Bad fill mode");
126 /* The VGPU10 device can't handle different front/back fill modes.
128 * make sure we always fill triangles in that case.
260 int fill = PIPE_POLYGON_MODE_FILL; local in function:svga_create_rasterizer_state
268 fill = PIPE_POLYGON_MODE_FILL;
273 fill = fill_back;
278 fill = fill_front;
284 * front/back fill mode
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_pipe_rasterizer.c68 translate_fill_mode(unsigned fill) argument
70 switch (fill) {
78 assert(!"Bad fill mode");
127 /* The VGPU10 device can't handle different front/back fill modes.
129 * make sure we always fill triangles in that case.
265 int fill = PIPE_POLYGON_MODE_FILL; local in function:svga_create_rasterizer_state
273 fill = PIPE_POLYGON_MODE_FILL;
278 fill = fill_back;
283 fill = fill_front;
289 * front/back fill mode
[all...]
/xsrc/external/mit/mesa-demos/dist/src/redbook/
H A Dpolyoff.c51 GLint fill = 1; variable in typeref:typename:GLint
77 if (fill) {
91 if (!fill) glEnable(GL_POLYGON_OFFSET_LINE);
96 if (!fill) {
258 fill = !fill;
259 printf ("fill/line: %d\n", fill);
/xsrc/external/mit/mesa-demos/dist/src/perf/
H A DMakefile.am49 fill \ program in directory:bin
/xsrc/external/mit/xorg-server/dist/glamor/
H A Dglamor_program.c193 "%s" /* fill vs_vars */
198 "%s" /* fill vs_exec */
207 "%s" /* fill fs_vars */
211 "%s" /* fill fs_exec */
248 const glamor_facet *fill,
269 if (!fill)
270 fill = &facet_null_fill;
272 locations |= fill->locations;
273 flags |= fill->flags;
274 version = MAX(version, fill
245 glamor_build_program(ScreenPtr screen,glamor_program * prog,const glamor_facet * prim,const glamor_facet * fill,const char * combine,const char * defines) argument
421 const glamor_facet *fill; local in function:glamor_use_program_fill
603 const glamor_facet *fill = glamor_facet_source[source_type]; local in function:glamor_setup_one_program_render
[all...]
/xsrc/external/mit/xf86-video-intel/dist/test/
H A Dbasic-string.c11 int x, int y, uint32_t fg, uint32_t bg, int s, int fill)
26 if (fill)
62 int fill = rand() & 1; local in function:string_tests
64 draw_string(&t->out, out.draw, alu, x, y, fg, bg, str, fill);
65 draw_string(&t->ref, ref.draw, alu, x, y, fg, bg, str, fill);
10 draw_string(struct test_display * t,Drawable d,uint8_t alu,int x,int y,uint32_t fg,uint32_t bg,int s,int fill) argument
/xsrc/external/mit/xf86-video-intel-2014/dist/test/
H A Dbasic-string.c11 int x, int y, uint32_t fg, uint32_t bg, int s, int fill)
26 if (fill)
62 int fill = rand() & 1; local in function:string_tests
64 draw_string(&t->out, out.draw, alu, x, y, fg, bg, str, fill);
65 draw_string(&t->ref, ref.draw, alu, x, y, fg, bg, str, fill);
10 draw_string(struct test_display * t,Drawable d,uint8_t alu,int x,int y,uint32_t fg,uint32_t bg,int s,int fill) argument
H A DMakefile.am14 render-fill \
17 render-fill-copy \
/xsrc/external/mit/mesa-demos/dist/src/egl/openvg/
H A Dsp.c12 VGPaint fill; member in struct:object
37 object.fill = vgCreatePaint();
38 vgSetColor(object.fill, color);
79 object.fill = vgCreatePaint();
80 vgSetColor(object.fill, color);
102 object.fill = vgCreatePaint();
103 vgSetColor(object.fill, fill_color);
496 vgSetPaint(object.fill, VG_FILL_PATH);

Completed in 15 milliseconds

1234567891011>>