/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 | 795 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()
|
D | dd.h | 505 void (*BlendColor)(struct gl_context *ctx, const GLfloat color[4]); member
|
D | mtypes.h | 454 GLfloat BlendColor[4]; /**< Blending color */ member
|
D | get.c | 1000 COPY_4FV(v->value_float_4, ctx->Color.BlendColor); in find_custom_value()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | driverfuncs.c | 124 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/ |
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/gl/ |
D | GrGLAssembleInterface.cpp | 100 GET_PROC(BlendColor); in GrGLMakeAssembledGLInterface() 474 GET_PROC(BlendColor); in GrGLMakeAssembledGLESInterface()
|
D | GrGLGpu.cpp | 2929 GL_CALL(BlendColor(blendConst.fR, blendConst.fG, blendConst.fB, blendConst.fA)); in flushBlend()
|
/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/swiftshader/src/OpenGL/libGLESv2/ |
D | entry_points.h | 32 void BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
|
D | entry_points.cpp | 75 return gl::BlendColor(red, green, blue, alpha); in glBlendColor() 1553 this->glBlendColor = gl::BlendColor; in LibGLESv2exports()
|
D | libGLESv2.cpp | 308 void BlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) in BlendColor() function 6334 FUNCTION(BlendColor), in es2GetProcAddress()
|
/external/mesa3d/src/mapi/glapi/tests/ |
D | check_table.cpp | 900 { "glBlendColor", _O(BlendColor) },
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_state.c | 2385 functions->BlendColor = r200BlendColor; in r200InitStateFuncs()
|
/external/mesa3d/include/GL/ |
D | gl_mangle.h | 136 #define glBlendColor MANGLE(BlendColor)
|