Home
last modified time | relevance | path

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

12

/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.c798 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F); in _mesa_BlendColor()
799 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F); in _mesa_BlendColor()
800 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F); in _mesa_BlendColor()
801 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F); in _mesa_BlendColor()
803 if (ctx->Driver.BlendColor) in _mesa_BlendColor()
804 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_BlendColor()
1208 ASSIGN_4V( ctx->Color.BlendColor, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_color()
Ddd.h603 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member
Dmtypes.h403 GLfloat BlendColor[4]; /**< Blending color */ member
Dget.c1102 COPY_4FV(v->value_float_4, ctx->Color.BlendColor); in find_custom_value()
/external/mesa3d/src/mesa/drivers/common/
Ddriverfuncs.c128 driver->BlendColor = NULL; in _mesa_init_driver_functions()
225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_init_driver_state()
/external/skia/src/gpu/gl/
DGrGLAssembleWebGLInterfaceAutogen.cpp67 GET_PROC(BlendColor); in GrGLMakeAssembledWebGLInterface()
DGrGLAssembleGLESInterfaceAutogen.cpp60 GET_PROC(BlendColor); in GrGLMakeAssembledGLESInterface()
DGrGLAssembleGLInterfaceAutogen.cpp63 GET_PROC(BlendColor); in GrGLMakeAssembledGLInterface()
DGrGLGpu.cpp2586 GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); in flushBlendAndColorWrite()
/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/dawn/
DGrDawnProgramBuilder.cpp40 return wgpu::BlendFactor::BlendColor; in to_dawn_blend_factor()
/external/skia/tools/gpu/gl/interface/
Dinterface.json525 "BindTexture", "BlendColor", "BlendEquation", "BlendFunc",
/external/mesa3d/src/mesa/drivers/dri/i915/
Di830_state.c1116 functions->BlendColor = i830BlendColor; in i830InitStateFuncs()
Di915_state.c1058 functions->BlendColor = i915BlendColor; in i915InitStateFunctions()
/external/mesa3d/src/mapi/glapi/tests/
Dcheck_table.cpp900 { "glBlendColor", _O(BlendColor) },
/external/swiftshader/src/OpenGL/libGLESv2/
Dentry_points.cpp75 return gl::BlendColor(red, green, blue, alpha); in glBlendColor()
1553 this->glBlendColor = gl::BlendColor; in LibGLESv2exports()
Dentry_points.h32 void GL_APIENTRY BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
DlibGLESv2.cpp308 void GL_APIENTRY BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in BlendColor() function
6299 FUNCTION(BlendColor), in es2GetProcAddress()
/external/skia/gn/
Dsksl_tests.gni518 "/sksl/blend/BlendColor.sksl",
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_state.c2364 functions->BlendColor = r200BlendColor; in r200InitStateFuncs()
/external/angle/src/libGLESv2/
Dentry_points_gles_2_0_autogen.cpp210 ANGLE_CAPTURE(BlendColor, isCallValid, context, red, green, blue, alpha); in GL_BlendColor()

12