Re: [1/10] gdiplus: added GdipScaleMatrix [try2]
19 Jul
2007
19 Jul
'07
11:03 a.m.
"Evan Stade" <estade(a)gmail.com> writes:
+GpStatus WINGDIPAPI GdipScaleMatrix(GpMatrix *matrix, REAL scaleX, REAL scaleY, + GpMatrixOrder order) +{ + REAL scale[6]; + + if(!matrix) + return InvalidParameter; + + memset(scale, 0, 6 * sizeof(REAL));
Using memset for floats is not a good idea, you should use explicit initialization. -- Alexandre Julliard julliard(a)winehq.org
6811
Age (days ago)
6811
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard