/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
D | s_blend.c | 541 sR = ctx->Color.BlendColor[0]; in blend_general_float() 542 sG = ctx->Color.BlendColor[1]; in blend_general_float() 543 sB = ctx->Color.BlendColor[2]; in blend_general_float() 546 sR = 1.0F - ctx->Color.BlendColor[0]; in blend_general_float() 547 sG = 1.0F - ctx->Color.BlendColor[1]; in blend_general_float() 548 sB = 1.0F - ctx->Color.BlendColor[2]; in blend_general_float() 551 sR = sG = sB = ctx->Color.BlendColor[3]; in blend_general_float() 554 sR = sG = sB = 1.0F - ctx->Color.BlendColor[3]; in blend_general_float() 602 sA = ctx->Color.BlendColor[3]; in blend_general_float() 605 sA = 1.0F - ctx->Color.BlendColor[3]; in blend_general_float() [all …]
|
/external/mesa3d/src/mesa/swrast/ |
D | s_blend.c | 541 sR = ctx->Color.BlendColor[0]; in blend_general_float() 542 sG = ctx->Color.BlendColor[1]; in blend_general_float() 543 sB = ctx->Color.BlendColor[2]; in blend_general_float() 546 sR = 1.0F - ctx->Color.BlendColor[0]; in blend_general_float() 547 sG = 1.0F - ctx->Color.BlendColor[1]; in blend_general_float() 548 sB = 1.0F - ctx->Color.BlendColor[2]; in blend_general_float() 551 sR = sG = sB = ctx->Color.BlendColor[3]; in blend_general_float() 554 sR = sG = sB = 1.0F - ctx->Color.BlendColor[3]; in blend_general_float() 602 sA = ctx->Color.BlendColor[3]; in blend_general_float() 605 sA = 1.0F - ctx->Color.BlendColor[3]; in blend_general_float() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
D | nv10_state_raster.c | 53 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 | in nv10_emit_blend_color() 54 FLOAT_TO_UBYTE(ctx->Color.BlendColor[0]) << 16 | in nv10_emit_blend_color() 55 FLOAT_TO_UBYTE(ctx->Color.BlendColor[1]) << 8 | in nv10_emit_blend_color() 56 FLOAT_TO_UBYTE(ctx->Color.BlendColor[2]) << 0); in nv10_emit_blend_color()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nv10_state_raster.c | 53 PUSH_DATA (push, FLOAT_TO_UBYTE(ctx->Color.BlendColor[3]) << 24 | in nv10_emit_blend_color() 54 FLOAT_TO_UBYTE(ctx->Color.BlendColor[0]) << 16 | in nv10_emit_blend_color() 55 FLOAT_TO_UBYTE(ctx->Color.BlendColor[1]) << 8 | in nv10_emit_blend_color() 56 FLOAT_TO_UBYTE(ctx->Color.BlendColor[2]) << 0); in nv10_emit_blend_color()
|
D | nouveau_state.c | 517 ctx->Driver.BlendColor = nouveau_blend_color; in nouveau_state_init()
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | blend.c | 559 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F); in _mesa_BlendColor() 560 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F); in _mesa_BlendColor() 561 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F); in _mesa_BlendColor() 562 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F); in _mesa_BlendColor() 564 if (ctx->Driver.BlendColor) in _mesa_BlendColor() 565 (*ctx->Driver.BlendColor)(ctx, ctx->Color.BlendColor); in _mesa_BlendColor() 843 ASSIGN_4V( ctx->Color.BlendColor, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_color()
|
/external/mesa3d/src/mesa/main/ |
D | blend.c | 559 ctx->Color.BlendColor[0] = CLAMP(tmp[0], 0.0F, 1.0F); in _mesa_BlendColor() 560 ctx->Color.BlendColor[1] = CLAMP(tmp[1], 0.0F, 1.0F); in _mesa_BlendColor() 561 ctx->Color.BlendColor[2] = CLAMP(tmp[2], 0.0F, 1.0F); in _mesa_BlendColor() 562 ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F); in _mesa_BlendColor() 564 if (ctx->Driver.BlendColor) in _mesa_BlendColor() 565 (*ctx->Driver.BlendColor)(ctx, ctx->Color.BlendColor); in _mesa_BlendColor() 843 ASSIGN_4V( ctx->Color.BlendColor, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_color()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/ |
D | driverfuncs.c | 121 driver->BlendColor = NULL; in _mesa_init_driver_functions() 225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_init_driver_state()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | driverfuncs.c | 121 driver->BlendColor = NULL; in _mesa_init_driver_functions() 225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor); in _mesa_init_driver_state()
|
/external/chromium_org/gpu/command_buffer/service/ |
D | gles2_cmd_decoder_unittest_0_autogen.h | 26 EXPECT_CALL(*gl_, BlendColor(0.0f, 0.0f, 0.0f, 0.0f)) in SetupInitStateExpectations()
|
/external/chromium_org/third_party/skia/src/gpu/gl/angle/ |
D | GrGLCreateANGLEInterface.cpp | 49 GET_PROC(BlendColor); in GrGLCreateANGLEInterface()
|
/external/skia/src/gpu/gl/angle/ |
D | GrGLCreateANGLEInterface.cpp | 49 GET_PROC(BlendColor); in GrGLCreateANGLEInterface()
|
/external/skia/src/gpu/gl/mesa/ |
D | GrGLCreateMesaInterface.cpp | 58 GR_GL_GET_PROC(BlendColor); in GrGLCreateMesaInterface()
|
/external/chromium_org/third_party/skia/src/gpu/gl/mesa/ |
D | GrGLCreateMesaInterface.cpp | 58 GR_GL_GET_PROC(BlendColor); in GrGLCreateMesaInterface()
|
/external/chromium_org/third_party/skia/src/gpu/gl/mac/ |
D | GrGLCreateNativeInterface_mac.cpp | 79 GET_PROC(BlendColor); in GrGLCreateNativeInterface()
|
/external/skia/src/gpu/gl/mac/ |
D | GrGLCreateNativeInterface_mac.cpp | 79 GET_PROC(BlendColor); in GrGLCreateNativeInterface()
|
/external/chromium_org/gpu/command_buffer/common/ |
D | gles2_cmd_ids_autogen.h | 21 OP(BlendColor) /* 264 */ \
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/ |
D | glapi_getproc.c | 641 char *blendColorFunc = (char*) &table->BlendColor; in _glapi_check_table()
|
/external/mesa3d/src/mapi/glapi/ |
D | glapi_getproc.c | 641 char *blendColorFunc = (char*) &table->BlendColor; in _glapi_check_table()
|
/external/skia/src/gpu/gl/unix/ |
D | GrGLCreateNativeInterface_unix.cpp | 58 GR_GL_GET_PROC(BlendColor); in GrGLCreateNativeInterface()
|
/external/chromium_org/third_party/skia/src/gpu/gl/unix/ |
D | GrGLCreateNativeInterface_unix.cpp | 58 GR_GL_GET_PROC(BlendColor); in GrGLCreateNativeInterface()
|
/external/chromium_org/gpu/GLES2/ |
D | gl2chromium_autogen.h | 21 #define glBlendColor GLES2_GET_FUN(BlendColor)
|
/external/chromium_org/third_party/skia/src/gpu/gl/win/ |
D | GrGLCreateNativeInterface_win.cpp | 88 WGL_SET_PROC(BlendColor); in GrGLCreateNativeInterface()
|
/external/skia/src/gpu/gl/win/ |
D | GrGLCreateNativeInterface_win.cpp | 88 WGL_SET_PROC(BlendColor); in GrGLCreateNativeInterface()
|
/external/chromium_org/ppapi/shared_impl/ |
D | ppb_opengles2_shared.cc | 80 void BlendColor( in BlendColor() function 85 ToGles2Impl(&enter)->BlendColor(red, green, blue, alpha); in BlendColor() 1370 &BlendColor, in GetInterface()
|