wine-wine/include/d2dbasetypes.h

48 lines
1.2 KiB
C
Raw Normal View History

/*
* Copyright 2013 Nikolay Sivov for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
typedef struct D2D_POINT_2F
{
FLOAT x;
FLOAT y;
} D2D_POINT_2F;
2014-05-12 07:34:03 +00:00
typedef struct D2D_MATRIX_3X2_F
{
float _11;
float _12;
float _21;
float _22;
float _31;
float _32;
} D2D_MATRIX_3X2_F;
typedef struct D2D_RECT_F
{
float left;
float top;
float right;
float bottom;
} D2D_RECT_F;
typedef struct D2D_SIZE_F
{
float width;
float height;
} D2D_SIZE_F;