| /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/ |
| lineto.c | 9 VGPaint fill; variable 21 fill = vgCreatePaint(); 22 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color); 23 vgSetPaint(fill, VG_FILL_PATH);
|
| mask.c | 9 VGPaint fill; variable 21 fill = vgCreatePaint(); 22 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color); 23 vgSetPaint(fill, VG_FILL_PATH);
|
| roundedrect.c | 9 VGPaint fill; variable 40 fill = vgCreatePaint(); 41 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color); 42 vgSetPaint(fill, VG_FILL_PATH);
|
| star-nonzero.c | 9 VGPaint fill; variable 26 fill = vgCreatePaint(); 27 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, green_color); 28 vgSetPaint(fill, VG_FILL_PATH);
|
| coord.c | 9 VGPaint fill; variable 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);
|
| dash.c | 11 VGPaint fill; variable 35 fill = vgCreatePaint(); 36 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color); 37 vgSetPaint(fill, VG_FILL_PATH);
|
| gradorigin.c | 11 static VGPaint fill; variable 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);
|
| lingrad.c | 11 static VGPaint fill; variable 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);
|
| lookup.c | 14 VGPaint fill; variable
|
| radialgrad.c | 11 static VGPaint fill; variable 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);
|
| star-oddeven.c | 10 VGPaint fill; variable 23 VGPaint fill; local 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_PATH) [all...] |
| stroke.c | 11 VGPaint fill; variable 38 fill = vgCreatePaint(); 39 vgSetParameterfv(fill, VG_PAINT_COLOR, 4, color); 40 vgSetPaint(fill, VG_FILL_PATH);
|
| filter.c | 15 VGPaint fill; variable
|
| mask4.c | 81 VGPaint fill; local 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/demos/ |
| checkerboard.c | 44 pixman_image_t *fill; local 51 fill = pixman_image_create_solid_fill (c); 53 pixman_image_composite (PIXMAN_OP_SRC, fill, NULL, checkerboard,
|
| /xsrc/external/mit/pixman/dist/test/ |
| region-fractional-test.c | 27 pixman_image_t *image, *fill; local 86 fill = pixman_image_create_solid_fill (&white); 110 fill, NULL, image, 122 pixman_image_unref (fill);
|
| region-test.c | 27 pixman_image_t *image, *fill; local 86 fill = pixman_image_create_solid_fill (&white); 110 fill, NULL, image, 122 pixman_image_unref (fill);
|
| /xsrc/external/mit/libdrm/dist/tests/tegra/ |
| vic-blit.c | 103 /* fill bottom half of image to blue */ 104 static int fill(struct vic *vic, struct drm_tegra_channel *channel, function 130 err = vic->ops->fill(vic, output, 0, output->height / 2, output->width - 1, 133 fprintf(stderr, "failed to fill surface: %s\n", strerror(-err)); 306 err = fill(vic, channel, input); 308 fprintf(stderr, "failed to fill rectangle: %s\n", strerror(-err));
|
| vic-flip.c | 103 /* fill bottom half of image to blue */ 104 static int fill(struct vic *vic, struct drm_tegra_channel *channel, function 130 err = vic->ops->fill(vic, output, 0, output->height / 2, output->width - 1, 133 fprintf(stderr, "failed ot fill surface: %s\n", strerror(-err)); 306 err = fill(vic, channel, input); 308 fprintf(stderr, "failed to fill rectangle: %s\n", strerror(-err));
|
| /xsrc/external/mit/xf86-video-intel/dist/test/ |
| basic-stress.c | 30 static void fill(struct test_target *out, function 112 fill,
|
| basic-string.c | 11 int x, int y, uint32_t fg, uint32_t bg, int s, int fill) 26 if (fill) 62 int fill = rand() & 1; local 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);
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/test/ |
| basic-stress.c | 30 static void fill(struct test_target *out, function 112 fill,
|
| basic-string.c | 11 int x, int y, uint32_t fg, uint32_t bg, int s, int fill) 26 if (fill) 62 int fill = rand() & 1; local 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);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/ |
| nv50_ir_util.cpp | 295 void BitSet::fill(uint32_t val) function in class:nv50_ir::BitSet
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/ |
| svga_pipe_rasterizer.c | 68 translate_fill_mode(unsigned fill) 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 273 fill = PIPE_POLYGON_MODE_FILL; 278 fill = fill_back; 283 fill = fill_front; 289 * front/back fill modes [all...] |