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

12

/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
H A Ds_blend.c538 sR = ctx->Color.BlendColor[0];
539 sG = ctx->Color.BlendColor[1];
540 sB = ctx->Color.BlendColor[2];
543 sR = 1.0F - ctx->Color.BlendColor[0];
544 sG = 1.0F - ctx->Color.BlendColor[1];
545 sB = 1.0F - ctx->Color.BlendColor[2];
548 sR = sG = sB = ctx->Color.BlendColor[3];
551 sR = sG = sB = 1.0F - ctx->Color.BlendColor[3];
599 sA = ctx->Color.BlendColor[3];
602 sA = 1.0F - ctx->Color.BlendColor[
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
H A Ds_blend.c538 sR = ctx->Color.BlendColor[0];
539 sG = ctx->Color.BlendColor[1];
540 sB = ctx->Color.BlendColor[2];
543 sR = 1.0F - ctx->Color.BlendColor[0];
544 sG = 1.0F - ctx->Color.BlendColor[1];
545 sB = 1.0F - ctx->Color.BlendColor[2];
548 sR = sG = sB = ctx->Color.BlendColor[3];
551 sR = sG = sB = 1.0F - ctx->Color.BlendColor[3];
599 sA = ctx->Color.BlendColor[3];
602 sA = 1.0F - ctx->Color.BlendColor[
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_raster.c56 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 |
57 FLOAT_TO_UBYTE(ctx->Color.BlendColor[0]) << 16 |
58 FLOAT_TO_UBYTE(ctx->Color.BlendColor[1]) << 8 |
59 FLOAT_TO_UBYTE(ctx->Color.BlendColor[2]) << 0);
H A Dnouveau_state.c511 ctx->Driver.BlendColor = nouveau_blend_color;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_raster.c56 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 |
57 FLOAT_TO_UBYTE(ctx->Color.BlendColor[0]) << 16 |
58 FLOAT_TO_UBYTE(ctx->Color.BlendColor[1]) << 8 |
59 FLOAT_TO_UBYTE(ctx->Color.BlendColor[2]) << 0);
H A Dnouveau_state.c512 ctx->Driver.BlendColor = nouveau_blend_color;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dblend.c775 * Clamps the parameters and updates gl_colorbuffer_attrib::BlendColor. On a
777 * dd_function_table::BlendColor callback.
797 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F);
798 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F);
799 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F);
800 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F);
802 if (ctx->Driver.BlendColor)
803 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
1195 ASSIGN_4V( ctx->Color.BlendColor, 0.
[all...]
H A Ddd.h589 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member in struct:dd_function_table
H A Dmtypes.h405 GLfloat BlendColor[4]; /**< Blending color */ member in struct:gl_colorbuffer_attrib
4621 /** gl_context::Color::BlendColor */
H A Dget.c1062 COPY_4FV(v->value_float_4, ctx->Color.BlendColor);
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dblend.c805 * Clamps the parameters and updates gl_colorbuffer_attrib::BlendColor. On a
807 * dd_function_table::BlendColor callback.
828 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F);
829 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F);
830 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F);
831 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F);
833 if (ctx->Driver.BlendColor)
834 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
1245 ASSIGN_4V( ctx->Color.BlendColor, 0.
[all...]
H A Dmtypes.h357 GLfloat BlendColor[4]; /**< Blending color */ member in struct:gl_colorbuffer_attrib
4837 /** gl_context::Color::BlendColor */
H A Ddd.h678 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member in struct:dd_function_table
H A Dget.c1117 COPY_4FV(v->value_float_4, ctx->Color.BlendColor);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/common/
H A Ddriverfuncs.c129 driver->BlendColor = NULL;
226 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/common/
H A Ddriverfuncs.c131 driver->BlendColor = NULL;
228 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
H A Di830_state.c1116 functions->BlendColor = i830BlendColor;
H A Di915_state.c1058 functions->BlendColor = i915BlendColor;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
H A Di830_state.c1116 functions->BlendColor = i830BlendColor;
H A Di915_state.c1058 functions->BlendColor = i915BlendColor;
/xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/tests/
H A Dcheck_table.cpp900 { "glBlendColor", _O(BlendColor) },
/xsrc/external/mit/MesaLib/dist/src/mapi/glapi/tests/
H A Dcheck_table.cpp900 { "glBlendColor", _O(BlendColor) },
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dglapi_gentable.c2552 if(!disp->BlendColor) {
2554 procp = (void **) &disp->BlendColor;
2559 if(!disp->BlendColor) {
2561 procp = (void **) &disp->BlendColor;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/
H A Dr200_state.c2364 functions->BlendColor = r200BlendColor;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/
H A Dr200_state.c2365 functions->BlendColor = r200BlendColor;

Completed in 69 milliseconds

12