Lines Matching refs:color
330 ID2D1Brush* SolidBrush(COLORREF color);
333 int x, int y, int w, int h, int cellWidth, COLORREF color,
336 void FillRect(const RECT *rc, COLORREF color);
338 void DrawLine(int x1, int y1, int x2, int y2, COLORREF color);
340 void SetPixel(int x, int y, COLORREF color);
398 COLORREF color; member
541 pDWC_->SolidBrush(context->color), in IFACEMETHOD()
994 DWriteContext::SolidBrush(COLORREF color) in SolidBrush() argument
996 mBrush->SetColor(D2D1::ColorF(UINT32(GetRValue(color)) << 16 | in SolidBrush()
997 UINT32(GetGValue(color)) << 8 | UINT32(GetBValue(color)))); in SolidBrush()
1003 int x, int y, int w, int h, int cellWidth, COLORREF color, in DrawText() argument
1014 ::SetTextColor(mInteropHDC, color); in DrawText()
1037 TextRendererContext context = { color, FLOAT(cellWidth), 0.0f }; in DrawText()
1045 DWriteContext::FillRect(const RECT *rc, COLORREF color) in FillRect() argument
1051 HBRUSH hbr = ::CreateSolidBrush(color); in FillRect()
1061 SolidBrush(color)); in FillRect()
1066 DWriteContext::DrawLine(int x1, int y1, int x2, int y2, COLORREF color) in DrawLine() argument
1072 HPEN hpen = ::CreatePen(PS_SOLID, 1, color); in DrawLine()
1085 SolidBrush(color)); in DrawLine()
1090 DWriteContext::SetPixel(int x, int y, COLORREF color) in SetPixel() argument
1096 ::SetPixel(mInteropHDC, x, y, color); in SetPixel()
1105 SolidBrush(color)); in SetPixel()
1279 COLORREF color, in DWriteContext_DrawText() argument
1285 ctx->DrawText(text, len, x, y, w, h, cellWidth, color, in DWriteContext_DrawText()
1290 DWriteContext_FillRect(DWriteContext *ctx, const RECT *rc, COLORREF color) in DWriteContext_FillRect() argument
1293 ctx->FillRect(rc, color); in DWriteContext_FillRect()
1298 COLORREF color) in DWriteContext_DrawLine() argument
1301 ctx->DrawLine(x1, y1, x2, y2, color); in DWriteContext_DrawLine()
1305 DWriteContext_SetPixel(DWriteContext *ctx, int x, int y, COLORREF color) in DWriteContext_SetPixel() argument
1308 ctx->SetPixel(x, y, color); in DWriteContext_SetPixel()