HomeSort by relevance Sort by last modified time
    Searched refs:blend_color (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_blend.c 86 const struct pipe_blend_color *blend_color)
90 if (!blend_color)
93 if(memcmp(&llvmpipe->blend_color, blend_color, sizeof *blend_color) == 0)
98 memcpy(&llvmpipe->blend_color, blend_color, sizeof *blend_color);
lp_context.h 73 struct pipe_blend_color blend_color; member in struct:llvmpipe_context
lp_setup.h 117 const struct pipe_blend_color *blend_color );
lp_setup_context.h 149 } blend_color; member in struct:lp_setup_context
lp_setup.c 694 const struct pipe_blend_color *blend_color )
698 assert(blend_color);
700 if(memcmp(&setup->blend_color.current, blend_color, sizeof *blend_color) != 0) {
701 memcpy(&setup->blend_color.current, blend_color, sizeof *blend_color);
1059 fstored[i] = setup->blend_color.current.color[i % 4];
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_blend.c 70 const struct pipe_blend_color *blend_color)
77 softpipe->blend_color = *blend_color;
82 CLAMP(blend_color->color[i], 0.0f, 1.0f);
sp_context.h 77 struct pipe_blend_color blend_color; member in struct:softpipe_context
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 115 uint32 r = float_to_ubyte(svga->curr.blend_color.color[0]);
116 uint32 g = float_to_ubyte(svga->curr.blend_color.color[1]);
117 uint32 b = float_to_ubyte(svga->curr.blend_color.color[2]);
118 uint32 a = float_to_ubyte(svga->curr.blend_color.color[3]);
372 blend_factor[3] = svga->curr.blend_color.color[3];
375 blend_factor[0] = svga->curr.blend_color.color[0];
376 blend_factor[1] = svga->curr.blend_color.color[1];
377 blend_factor[2] = svga->curr.blend_color.color[2];
378 blend_factor[3] = svga->curr.blend_color.color[3];
svga_pipe_blend.c 386 const struct pipe_blend_color *blend_color )
390 svga->curr.blend_color = *blend_color;
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_blend.c 147 struct compiled_blend_color *cs = &ctx->blend_color;
158 struct compiled_blend_color *cs = &ctx->blend_color;
etnaviv_context.h 158 struct compiled_blend_color blend_color; member in struct:etna_context
  /external/mesa3d/src/gallium/drivers/vc5/
vc5_emit.c 493 vc5->blend_color.hf[2] :
494 vc5->blend_color.hf[0]);
495 colour.green_f16 = vc5->blend_color.hf[1];
497 vc5->blend_color.hf[0] :
498 vc5->blend_color.hf[2]);
499 colour.alpha_f16 = vc5->blend_color.hf[3];
vc5_state.c 55 const struct pipe_blend_color *blend_color)
58 vc5->blend_color.f = *blend_color;
60 vc5->blend_color.hf[i] =
61 util_float_to_half(blend_color->color[i]);
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_uniforms.c 302 CLAMP(vc4->blend_color.f.color[uinfo->contents[i] -
315 color |= (vc4->blend_color.ub[format_swiz[i]] <<
323 uint8_t a = vc4->blend_color.ub[3];
vc4_nir_lower_blend.c 506 nir_ssa_def *blend_color[4]; local
507 vc4_do_blending_f(c, b, blend_color, src_color, dst_color);
511 blend_color[i] = vc4_nir_srgb_encode(b, blend_color[i]);
513 packed_color = vc4_nir_swizzle_and_pack(c, b, blend_color);
vc4_state.c 51 const struct pipe_blend_color *blend_color)
54 vc4->blend_color.f = *blend_color;
56 vc4->blend_color.ub[i] = float_to_ubyte(blend_color->color[i]);
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_state.c 50 const struct pipe_blend_color *blend_color)
53 ctx->blend_color = *blend_color;
freedreno_context.h 276 struct pipe_blend_color blend_color; member in struct:fd_context
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_emit.c 321 OUT_RING(ring, float_to_ubyte(ctx->blend_color.color[0]));
322 OUT_RING(ring, float_to_ubyte(ctx->blend_color.color[1]));
323 OUT_RING(ring, float_to_ubyte(ctx->blend_color.color[2]));
324 OUT_RING(ring, float_to_ubyte(ctx->blend_color.color[3]));
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_dynamic.c 143 const float *color = i915->blend_color.color;
i915_context.h 242 struct pipe_blend_color blend_color; member in struct:i915_context
i915_state.c 197 const struct pipe_blend_color *blend_color )
201 if (!blend_color)
204 i915->blend_color = *blend_color;
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.h 128 struct pipe_blend_color blend_color; member in struct:swr_context
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_hw_context.c 249 if (!has_clear_state || ctx->blend_color.any_nonzeros)
250 si_mark_atom_dirty(ctx, &ctx->blend_color.atom);
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_pipe.h 239 struct pipe_blend_color blend_color; member in struct:dd_draw_state

Completed in 646 milliseconds

1 2 3