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"
|
|
|
|
|
2011-06-06 18:54:01 +02:00
|
|
|
#define ARRAY_SIZE(array) (sizeof(array)/sizeof(*array))
|
|
|
|
|
2012-03-08 20:27:12 +01:00
|
|
|
struct vec4
|
|
|
|
{
|
|
|
|
float x, y, z, w;
|
|
|
|
};
|
|
|
|
|
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;
|
2012-04-26 21:11:55 +02:00
|
|
|
UINT block_width;
|
|
|
|
UINT block_height;
|
|
|
|
UINT block_byte_count;
|
2009-10-13 13:58:29 +02:00
|
|
|
FormatType type;
|
2012-03-08 20:27:12 +01:00
|
|
|
void (*from_rgba)(const struct vec4 *src, struct vec4 *dst);
|
|
|
|
void (*to_rgba)(const struct vec4 *src, struct vec4 *dst);
|
2009-10-13 13:58:29 +02:00
|
|
|
} PixelFormatDesc;
|
|
|
|
|
2011-05-13 16:41:30 +02:00
|
|
|
HRESULT map_view_of_file(LPCWSTR filename, LPVOID *buffer, DWORD *length) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT load_resource_into_memory(HMODULE module, HRSRC resinfo, LPVOID *buffer, DWORD *length) DECLSPEC_HIDDEN;
|
2009-06-01 18:25:32 +02:00
|
|
|
|
2011-05-13 16:41:30 +02:00
|
|
|
const PixelFormatDesc *get_format_info(D3DFORMAT format) DECLSPEC_HIDDEN;
|
|
|
|
const PixelFormatDesc *get_format_info_idx(int idx) DECLSPEC_HIDDEN;
|
2009-10-13 13:58:29 +02:00
|
|
|
|
2012-05-13 23:00:07 +02:00
|
|
|
HRESULT load_texture_from_dds(IDirect3DTexture9 *texture, const void *src_data, const PALETTEENTRY *palette,
|
|
|
|
DWORD filter, D3DCOLOR color_key, const D3DXIMAGE_INFO *src_info) DECLSPEC_HIDDEN;
|
2012-05-13 23:00:06 +02:00
|
|
|
HRESULT load_cube_texture_from_dds(IDirect3DCubeTexture9 *cube_texture, const void *src_data,
|
|
|
|
const PALETTEENTRY *palette, DWORD filter, D3DCOLOR color_key, const D3DXIMAGE_INFO *src_info) DECLSPEC_HIDDEN;
|
|
|
|
|
2011-04-11 21:20:26 +02:00
|
|
|
/* debug helpers */
|
2011-05-13 16:41:30 +02:00
|
|
|
const char *debug_d3dxparameter_class(D3DXPARAMETER_CLASS c) DECLSPEC_HIDDEN;
|
|
|
|
const char *debug_d3dxparameter_type(D3DXPARAMETER_TYPE t) DECLSPEC_HIDDEN;
|
2011-04-11 21:20:26 +02:00
|
|
|
|
2008-03-14 14:12:30 +01:00
|
|
|
#endif /* __WINE_D3DX9_36_PRIVATE_H */
|