Searched refs:clear_color (Results 1 - 25 of 47) sorted by relevance

12

/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_masks.c86 ctx->state.vg.clear_color[0],
87 ctx->state.vg.clear_color[1],
88 ctx->state.vg.clear_color[2],
89 ctx->state.vg.clear_color[3]);
95 union pipe_color_union clear_color; local
96 clear_color.f[0] = ctx->state.vg.clear_color[0];
97 clear_color.f[1] = ctx->state.vg.clear_color[1];
98 clear_color
[all...]
H A Dvg_state.c72 state->clear_color[0] = 0.0f;
73 state->clear_color[1] = 0.0f;
74 state->clear_color[2] = 0.0f;
75 state->clear_color[3] = 0.0f;
H A Dvg_state.h75 VGfloat clear_color[4]; member in struct:vg_state
H A Dapi_params.c350 state->clear_color[0] = values[0];
351 state->clear_color[1] = values[1];
352 state->clear_color[2] = values[2];
353 state->clear_color[3] = values[3];
475 state->clear_color[0] = values[0];
476 state->clear_color[1] = values[1];
477 state->clear_color[2] = values[2];
478 state->clear_color[3] = values[3];
848 values[0] = state->clear_color[0];
849 values[1] = state->clear_color[
[all...]
/external/mesa3d/src/gallium/tests/graw/
H A Dfs-fragcoord.c176 union pipe_color_union clear_color; local
178 clear_color.f[0] = 0.25;
179 clear_color.f[1] = 0.25;
180 clear_color.f[2] = 0.25;
181 clear_color.f[3] = 1.0;
185 &clear_color, 1.0, 0);
H A Dfs-frontface.c150 union pipe_color_union clear_color; local
152 clear_color.f[0] = 0.25;
153 clear_color.f[1] = 0.25;
154 clear_color.f[2] = 0.25;
155 clear_color.f[3] = 1.00;
159 &clear_color, 1.0, 0);
H A Dfs-write-z.c155 union pipe_color_union clear_color; local
157 clear_color.f[0] = 0.25;
158 clear_color.f[1] = 0.25;
159 clear_color.f[2] = 0.25;
160 clear_color.f[3] = 1.00;
164 &clear_color, 1.0, 0);
H A Docclusion-query.c158 union pipe_color_union clear_color; local
163 clear_color.f[0] = 0.25;
164 clear_color.f[1] = 0.25;
165 clear_color.f[2] = 0.25;
166 clear_color.f[3] = 1.00;
170 &clear_color, 1.0, 0);
H A Dtex-srgb.c121 union pipe_color_union clear_color; local
123 clear_color.f[0] = 0.5;
124 clear_color.f[1] = 0.5;
125 clear_color.f[2] = 0.5;
126 clear_color.f[3] = 1.0;
128 info.ctx->clear(info.ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
H A Dtex-swizzle.c101 union pipe_color_union clear_color; local
103 clear_color.f[0] = 0.5;
104 clear_color.f[1] = 0.5;
105 clear_color.f[2] = 0.5;
106 clear_color.f[3] = 1.0;
108 info.ctx->clear(info.ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
H A Dclear.c29 union pipe_color_union clear_color = { {1, 0, 1, 1} }; local
31 ctx->clear(ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
H A Dquad-tex.c105 union pipe_color_union clear_color = { {.5,.5,.5,1} }; local
107 info.ctx->clear(info.ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
H A Dtri.c103 union pipe_color_union clear_color = { {1,0,1,1} }; local
105 info.ctx->clear(info.ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
H A Dshader-leak.c142 union pipe_color_union clear_color = { {0,0,0,1} }; local
152 ctx->clear(ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
H A Dtri-gs.c164 union pipe_color_union clear_color = { {1,0,1,1} }; local
166 ctx->clear(ctx, PIPE_CLEAR_COLOR, &clear_color, 0, 0);
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_program.h52 union pipe_color_union clear_color; member in struct:program
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_clear.c50 uint32_t clear_params, clear_color, clear_depth, clear_stencil, local
69 clear_color = u_color.ui;
72 clear_color = (u_color.ui & 0xffff) | (u_color.ui << 16);
83 clear_color = clear_color8888 = 0;
139 OUT_BATCH(clear_color);
158 OUT_BATCH(clear_color);
190 OUT_BATCH(clear_color);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c154 const uint8_t *clear_color = arg.clear_color; local
159 clear_color[0],
160 clear_color[1],
161 clear_color[2],
162 clear_color[3]);
164 if (clear_color[0] == clear_color[1] &&
165 clear_color[1] == clear_color[
[all...]
H A Dlp_setup.h58 const float *clear_color,
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
H A Dd3d10tri.cpp90 float clear_color[4] = {1, 0, 1, 1}; local
100 ctx->ClearRenderTargetView(rtv, clear_color);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.cpp92 float clear_color[4] = {1, 0, 1, 1}; local
102 ctx->ClearRenderTargetView(rtv, clear_color);
/external/mesa3d/src/gallium/tests/trivial/
H A Dtri.c78 union pipe_color_union clear_color; member in struct:program
102 p->clear_color.f[0] = 0.3;
103 p->clear_color.f[1] = 0.1;
104 p->clear_color.f[2] = 0.3;
105 p->clear_color.f[3] = 1.0;
249 p->pipe->clear(p->pipe, PIPE_CLEAR_COLOR, &p->clear_color, 0, 0);
H A Dquad-tex.c81 union pipe_color_union clear_color; member in struct:program
107 p->clear_color.f[0] = 0.3;
108 p->clear_color.f[1] = 0.1;
109 p->clear_color.f[2] = 0.3;
110 p->clear_color.f[3] = 1.0;
313 p->pipe->clear(p->pipe, PIPE_CLEAR_COLOR, &p->clear_color, 0, 0);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.h91 union pipe_color_union clear_color; /**< for color bufs */ member in struct:softpipe_tile_cache
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor.h83 union pipe_color_union clear_color; member in struct:vl_compositor_state

Completed in 1671 milliseconds

12