Searched refs:BlendColor (Results 1 - 16 of 16) sorted by relevance

/external/mesa3d/src/mesa/swrast/
H A Ds_blend.c541 sR = ctx->Color.BlendColor[0];
542 sG = ctx->Color.BlendColor[1];
543 sB = ctx->Color.BlendColor[2];
546 sR = 1.0F - ctx->Color.BlendColor[0];
547 sG = 1.0F - ctx->Color.BlendColor[1];
548 sB = 1.0F - ctx->Color.BlendColor[2];
551 sR = sG = sB = ctx->Color.BlendColor[3];
554 sR = sG = sB = 1.0F - ctx->Color.BlendColor[3];
602 sA = ctx->Color.BlendColor[3];
605 sA = 1.0F - ctx->Color.BlendColor[
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_raster.c53 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 |
54 FLOAT_TO_UBYTE(ctx->Color.BlendColor[0]) << 16 |
55 FLOAT_TO_UBYTE(ctx->Color.BlendColor[1]) << 8 |
56 FLOAT_TO_UBYTE(ctx->Color.BlendColor[2]) << 0);
H A Dnouveau_state.c517 ctx->Driver.BlendColor = nouveau_blend_color;
/external/mesa3d/src/mesa/main/
H A Dblend.c537 * Clamps the parameters and updates gl_colorbuffer_attrib::BlendColor. On a
539 * dd_function_table::BlendColor callback.
559 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F);
560 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F);
561 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F);
562 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F);
564 if (ctx->Driver.BlendColor)
565 (*ctx->Driver.BlendColor)(ctx, ctx->Color.BlendColor);
843 ASSIGN_4V( ctx->Color.BlendColor, 0.
[all...]
H A Ddd.h441 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member in struct:dd_function_table
H A Dmtypes.h759 GLfloat BlendColor[4]; /**< Blending color */ member in struct:gl_colorbuffer_attrib
H A Dget.c1795 COPY_4FV(v->value_float_4, ctx->Color.BlendColor);
/external/mesa3d/src/mesa/drivers/common/
H A Ddriverfuncs.c121 driver->BlendColor = NULL;
225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
/external/skia/src/gpu/gl/
H A DGrGLAssembleInterface.cpp82 GET_PROC(BlendColor);
84 GET_PROC_SUFFIX(BlendColor, EXT);
365 GET_PROC(BlendColor);
H A DGrGLGpu.cpp2167 GL_CALL(BlendColor(c[0], c[1], c[2], c[3]));
/external/mesa3d/src/mapi/glapi/
H A Dglapi_getproc.c641 char *blendColorFunc = (char*) &table->BlendColor;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di830_state.c1117 functions->BlendColor = i830BlendColor;
H A Di915_state.c1070 functions->BlendColor = i915BlendColor;
/external/mesa3d/src/mapi/glapi/tests/
H A Dcheck_table.cpp902 { "glBlendColor", _O(BlendColor) },
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_state.c2431 functions->BlendColor = r200BlendColor;
/external/mesa3d/include/GL/
H A Dgl_mangle.h120 #define glBlendColor MANGLE(BlendColor)

Completed in 238 milliseconds