Home
last modified time | relevance | path

Searched refs:BlendColor (Results 1 – 20 of 20) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_blend.c538 sR = ctx->Color.BlendColor[0]; in blend_general_float()
539 sG = ctx->Color.BlendColor[1]; in blend_general_float()
540 sB = ctx->Color.BlendColor[2]; in blend_general_float()
543 sR = 1.0F - ctx->Color.BlendColor[0]; in blend_general_float()
544 sG = 1.0F - ctx->Color.BlendColor[1]; in blend_general_float()
545 sB = 1.0F - ctx->Color.BlendColor[2]; in blend_general_float()
548 sR = sG = sB = ctx->Color.BlendColor[3]; in blend_general_float()
551 sR = sG = sB = 1.0F - ctx->Color.BlendColor[3]; in blend_general_float()
599 sA = ctx->Color.BlendColor[3]; in blend_general_float()
602 sA = 1.0F - ctx->Color.BlendColor[3]; in blend_general_float()
[all …]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnv10_state_raster.c56 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 | in nv10_emit_blend_color()
57 FLOAT_TO_UBYTE(ctx->Color.BlendColor[0]) << 16 | in nv10_emit_blend_color()
58 FLOAT_TO_UBYTE(ctx->Color.BlendColor[1]) << 8 | in nv10_emit_blend_color()
59 FLOAT_TO_UBYTE(ctx->Color.BlendColor[2]) << 0); in nv10_emit_blend_color()
Dnouveau_state.c511 ctx->Driver.BlendColor = nouveau_blend_color; in nouveau_state_init()
/external/mesa3d/src/mesa/main/
Dblend.c795 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F); in _mesa_BlendColor()
796 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F); in _mesa_BlendColor()
797 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F); in _mesa_BlendColor()
798 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F); in _mesa_BlendColor()
800 if (ctx->Driver.BlendColor) in _mesa_BlendColor()
801 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_BlendColor()
1187 ASSIGN_4V( ctx->Color.BlendColor, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_color()
Ddd.h505 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member
Dmtypes.h454 GLfloat BlendColor[4]; /**< Blending color */ member
Dget.c1000 COPY_4FV(v->value_float_4, ctx->Color.BlendColor); in find_custom_value()
/external/mesa3d/src/mesa/drivers/common/
Ddriverfuncs.c124 driver->BlendColor = NULL; in _mesa_init_driver_functions()
222 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_init_driver_state()
/external/skqp/src/gpu/gl/
DGrGLAssembleInterface.cpp100 GET_PROC(BlendColor); in GrGLMakeAssembledGLInterface()
477 GET_PROC(BlendColor); in GrGLMakeAssembledGLESInterface()
DGrGLGpu.cpp2917 GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); in flushBlend()
/external/skia/src/gpu/gl/
DGrGLAssembleInterface.cpp100 GET_PROC(BlendColor); in GrGLMakeAssembledGLInterface()
474 GET_PROC(BlendColor); in GrGLMakeAssembledGLESInterface()
DGrGLGpu.cpp2929 GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); in flushBlend()
/external/mesa3d/src/mesa/drivers/dri/i915/
Di830_state.c1116 functions->BlendColor = i830BlendColor; in i830InitStateFuncs()
Di915_state.c1058 functions->BlendColor = i915BlendColor; in i915InitStateFunctions()
/external/swiftshader/src/OpenGL/libGLESv2/
Dentry_points.h32 void BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
Dentry_points.cpp75 return gl::BlendColor(red, green, blue, alpha); in glBlendColor()
1553 this->glBlendColor = gl::BlendColor; in LibGLESv2exports()
DlibGLESv2.cpp308 void BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in BlendColor() function
6334 FUNCTION(BlendColor), in es2GetProcAddress()
/external/mesa3d/src/mapi/glapi/tests/
Dcheck_table.cpp900 { "glBlendColor", _O(BlendColor) },
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_state.c2385 functions->BlendColor = r200BlendColor; in r200InitStateFuncs()
/external/mesa3d/include/GL/
Dgl_mangle.h136 #define glBlendColor MANGLE(BlendColor)