Commit b940f2fd authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d2d1: Implement d2d_bitmap_brush_GetExtendModeX().

parent 21a4a108
......@@ -594,9 +594,11 @@ static void STDMETHODCALLTYPE d2d_bitmap_brush_SetBitmap(ID2D1BitmapBrush *iface
static D2D1_EXTEND_MODE STDMETHODCALLTYPE d2d_bitmap_brush_GetExtendModeX(ID2D1BitmapBrush *iface)
{
FIXME("iface %p stub!\n", iface);
struct d2d_brush *brush = impl_from_ID2D1BitmapBrush(iface);
return D2D1_EXTEND_MODE_CLAMP;
TRACE("iface %p.\n", iface);
return brush->u.bitmap.extend_mode_x;
}
static D2D1_EXTEND_MODE STDMETHODCALLTYPE d2d_bitmap_brush_GetExtendModeY(ID2D1BitmapBrush *iface)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment