/external/mesa3d/src/mesa/swrast/ |
D | s_blend.c | 538 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/ |
D | nv10_state_raster.c | 56 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()
|
D | nouveau_state.c | 511 ctx->Driver.BlendColor = nouveau_blend_color; in nouveau_state_init()
|
/external/mesa3d/src/mesa/main/ |
D | blend.c | 798 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()
|
D | dd.h | 603 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member
|
D | mtypes.h | 403 GLfloat BlendColor[4]; /**< Blending color */ member
|
D | get.c | 1102 COPY_4FV(v->value_float_4, ctx->Color.BlendColor); in find_custom_value()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | driverfuncs.c | 128 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/ |
D | GrGLAssembleWebGLInterfaceAutogen.cpp | 67 GET_PROC(BlendColor); in GrGLMakeAssembledWebGLInterface()
|
D | GrGLAssembleGLESInterfaceAutogen.cpp | 60 GET_PROC(BlendColor); in GrGLMakeAssembledGLESInterface()
|
D | GrGLAssembleGLInterfaceAutogen.cpp | 63 GET_PROC(BlendColor); in GrGLMakeAssembledGLInterface()
|
D | GrGLGpu.cpp | 2586 GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); in flushBlendAndColorWrite()
|
/external/skqp/src/gpu/gl/ |
D | GrGLAssembleInterface.cpp | 100 GET_PROC(BlendColor); in GrGLMakeAssembledGLInterface() 477 GET_PROC(BlendColor); in GrGLMakeAssembledGLESInterface()
|
D | GrGLGpu.cpp | 2917 GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); in flushBlend()
|
/external/skia/src/gpu/dawn/ |
D | GrDawnProgramBuilder.cpp | 40 return wgpu::BlendFactor::BlendColor; in to_dawn_blend_factor()
|
/external/skia/tools/gpu/gl/interface/ |
D | interface.json5 | 25 "BindTexture", "BlendColor", "BlendEquation", "BlendFunc",
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i830_state.c | 1116 functions->BlendColor = i830BlendColor; in i830InitStateFuncs()
|
D | i915_state.c | 1058 functions->BlendColor = i915BlendColor; in i915InitStateFunctions()
|
/external/mesa3d/src/mapi/glapi/tests/ |
D | check_table.cpp | 900 { "glBlendColor", _O(BlendColor) },
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | entry_points.cpp | 75 return gl::BlendColor(red, green, blue, alpha); in glBlendColor() 1553 this->glBlendColor = gl::BlendColor; in LibGLESv2exports()
|
D | entry_points.h | 32 void GL_APIENTRY BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
|
D | libGLESv2.cpp | 308 void GL_APIENTRY BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in BlendColor() function 6299 FUNCTION(BlendColor), in es2GetProcAddress()
|
/external/skia/gn/ |
D | sksl_tests.gni | 518 "/sksl/blend/BlendColor.sksl",
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_state.c | 2364 functions->BlendColor = r200BlendColor; in r200InitStateFuncs()
|
/external/angle/src/libGLESv2/ |
D | entry_points_gles_2_0_autogen.cpp | 210 ANGLE_CAPTURE(BlendColor, isCallValid, context, red, green, blue, alpha); in GL_BlendColor()
|