Home | History | Annotate | Download | only in vdpau

Lines Matching defs:color

113  * Configure the background color setting.
120 union pipe_color_union color;
129 color.f[0] = background_color->red;
130 color.f[1] = background_color->green;
131 color.f[2] = background_color->blue;
132 color.f[3] = background_color->alpha;
135 vl_compositor_set_clear_color(&pq->cstate, &color);
142 * Retrieve the current background color setting.
149 union pipe_color_union color;
159 vl_compositor_get_clear_color(&pq->cstate, &color);
162 background_color->red = color.f[0];
163 background_color->green = color.f[1];
164 background_color->blue = color.f[2];
165 background_color->alpha = color.f[3];
252 // TODO: we correctly support the clipping here, but not the pq background color in the clipped area....