Commit 00b40eac authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

d2d1: Use correct interpolation mode enum type member.

parent af605f8b
......@@ -1113,7 +1113,7 @@ HRESULT d2d_bitmap_brush_create(ID2D1Factory *factory, ID2D1Bitmap *bitmap,
{
(*brush)->u.bitmap.extend_mode_x = D2D1_EXTEND_MODE_CLAMP;
(*brush)->u.bitmap.extend_mode_y = D2D1_EXTEND_MODE_CLAMP;
(*brush)->u.bitmap.interpolation_mode = D2D1_BITMAP_INTERPOLATION_MODE_LINEAR;
(*brush)->u.bitmap.interpolation_mode = D2D1_INTERPOLATION_MODE_LINEAR;
}
TRACE("Created brush %p.\n", *brush);
......
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