HomeSort by relevance Sort by last modified time
    Searched full:blend_color (Results 1 - 25 of 69) 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.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...]
lp_setup_context.h 149 } blend_color; member in struct:lp_setup_context
lp_state_fs.c 1720 LLVMValueRef blend_color; local
    [all...]
lp_state_derived.c 226 &llvmpipe->blend_color);
  /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 116 uint32 r = float_to_ubyte(svga->curr.blend_color.color[0]);
117 uint32 g = float_to_ubyte(svga->curr.blend_color.color[1]);
118 uint32 b = float_to_ubyte(svga->curr.blend_color.color[2]);
119 uint32 a = float_to_ubyte(svga->curr.blend_color.color[3]);
365 blend_factor[3] = svga->curr.blend_color.color[3];
368 blend_factor[0] = svga->curr.blend_color.color[0];
369 blend_factor[1] = svga->curr.blend_color.color[1];
370 blend_factor[2] = svga->curr.blend_color.color[2];
371 blend_factor[3] = svga->curr.blend_color.color[3];
svga_pipe_blend.c 385 const struct pipe_blend_color *blend_color )
389 svga->curr.blend_color = *blend_color;
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_state.c 50 const struct pipe_blend_color *blend_color)
53 ctx->blend_color = *blend_color;
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_uniforms.c 301 CLAMP(vc4->blend_color.f.color[uinfo->contents[i] -
314 color |= (vc4->blend_color.ub[format_swiz[i]] <<
322 uint8_t a = vc4->blend_color.ub[3];
vc4_nir_lower_blend.c 556 nir_ssa_def *blend_color[4]; local
557 vc4_do_blending_f(c, b, blend_color, src_color, dst_color);
561 blend_color[i] = vc4_nir_srgb_encode(b, blend_color[i]);
563 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/auxiliary/cso_cache/
cso_cache.h 59 * - blend_color
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_context.h 147 struct compiled_blend_color blend_color; member in struct:etna_context
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.h 118 struct pipe_blend_color blend_color; member in struct:swr_context
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlend.cpp 85 BLEND_COLOR = 42,
475 case BLEND_COLOR:
476 ALOGE("Called unimplemented blend intrinsic BLEND_COLOR");
  /external/mesa3d/src/gallium/drivers/ddebug/
dd_pipe.h 172 struct pipe_blend_color blend_color; member in struct:dd_draw_state
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 197 const struct pipe_blend_color *blend_color )
201 if (!blend_color)
204 i915->blend_color = *blend_color;
    [all...]
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
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_raster.c 55 BEGIN_NV04(push, NV10_3D(BLEND_COLOR), 1);
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_state_validate.c 184 BEGIN_NV04(push, NV30_3D(BLEND_COLOR), 1);
196 BEGIN_NV04(push, NV30_3D(BLEND_COLOR), 1);

Completed in 3193 milliseconds

1 2 3