Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 125 of file matrix.c.
Referenced by brush_fill_pixels(), GdipCloneBrush(), GdipSetWorldTransform(), get_graphics_transform(), init_container(), restore_container(), and transform_and_round_points().
{ TRACE("(%p, %p)\n", matrix, clone); if(!matrix || !clone) return InvalidParameter; *clone = GdipAlloc(sizeof(GpMatrix)); if(!*clone) return OutOfMemory; **clone = *matrix; return Ok; }