2008-03-14 14:12:30 +01:00
|
|
|
/*
|
2009-07-11 18:00:20 +02:00
|
|
|
* Copyright (C) 2002 Raphael Junqueira
|
2009-07-11 18:06:44 +02:00
|
|
|
* Copyright (C) 2008 David Adam
|
2008-03-14 14:12:30 +01:00
|
|
|
* Copyright (C) 2008 Tony Wasserka
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_D3DX9_36_PRIVATE_H
|
|
|
|
#define __WINE_D3DX9_36_PRIVATE_H
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
2009-06-01 18:30:15 +02:00
|
|
|
#include "winbase.h"
|
2008-03-14 14:12:30 +01:00
|
|
|
#include "wingdi.h"
|
2009-06-01 18:30:15 +02:00
|
|
|
#include "winuser.h"
|
2008-03-14 14:12:30 +01:00
|
|
|
#include "d3dx9.h"
|
|
|
|
|
2009-06-01 18:25:32 +02:00
|
|
|
/* for internal use */
|
2009-10-13 13:58:29 +02:00
|
|
|
typedef enum _FormatType {
|
|
|
|
FORMAT_ARGB, /* unsigned */
|
|
|
|
FORMAT_UNKNOWN
|
|
|
|
} FormatType;
|
|
|
|
|
|
|
|
typedef struct _PixelFormatDesc {
|
|
|
|
D3DFORMAT format;
|
|
|
|
BYTE bits[4];
|
|
|
|
BYTE shift[4];
|
|
|
|
UINT bytes_per_pixel;
|
|
|
|
FormatType type;
|
|
|
|
} PixelFormatDesc;
|
|
|
|
|
2009-06-01 18:25:32 +02:00
|
|
|
HRESULT map_view_of_file(LPCWSTR filename, LPVOID *buffer, DWORD *length);
|
|
|
|
HRESULT load_resource_into_memory(HMODULE module, HRSRC resinfo, LPVOID *buffer, DWORD *length);
|
|
|
|
|
2009-10-13 13:58:29 +02:00
|
|
|
const PixelFormatDesc *get_format_info(D3DFORMAT format);
|
2010-10-05 21:58:59 +02:00
|
|
|
const PixelFormatDesc *get_format_info_idx(int idx);
|
2009-10-13 13:58:29 +02:00
|
|
|
|
2008-03-14 14:12:30 +01:00
|
|
|
#endif /* __WINE_D3DX9_36_PRIVATE_H */
|