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;
|
|
|
|
};
|
|
|
|
|
2012-07-13 17:21:54 +02:00
|
|
|
struct volume
|
|
|
|
{
|
|
|
|
UINT width;
|
|
|
|
UINT height;
|
|
|
|
UINT depth;
|
|
|
|
};
|
|
|
|
|
2009-06-01 18:25:32 +02:00
|
|
|
/* for internal use */
|
2012-09-03 09:57:45 +02:00
|
|
|
enum format_type {
|
2009-10-13 13:58:29 +02:00
|
|
|
FORMAT_ARGB, /* unsigned */
|
2013-01-10 22:18:08 +01:00
|
|
|
FORMAT_ARGBF16,/* float 16 */
|
2013-01-15 19:25:26 +01:00
|
|
|
FORMAT_ARGBF, /* float */
|
2012-10-22 17:20:27 +02:00
|
|
|
FORMAT_DXT,
|
2013-05-19 22:32:18 +02:00
|
|
|
FORMAT_INDEX,
|
2009-10-13 13:58:29 +02:00
|
|
|
FORMAT_UNKNOWN
|
2012-09-03 09:57:45 +02:00
|
|
|
};
|
2009-10-13 13:58:29 +02:00
|
|
|
|
2012-09-03 09:57:41 +02:00
|
|
|
struct pixel_format_desc {
|
2009-10-13 13:58:29 +02:00
|
|
|
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;
|
2012-09-03 09:57:45 +02:00
|
|
|
enum format_type type;
|
2012-03-08 20:27:12 +01:00
|
|
|
void (*from_rgba)(const struct vec4 *src, struct vec4 *dst);
|
2013-05-19 22:32:18 +02:00
|
|
|
void (*to_rgba)(const struct vec4 *src, struct vec4 *dst, const PALETTEENTRY *palette);
|
2012-09-03 09:57:41 +02:00
|
|
|
};
|
2009-10-13 13:58:29 +02:00
|
|
|
|
2013-08-30 08:42:48 +02:00
|
|
|
HRESULT map_view_of_file(const WCHAR *filename, void **buffer, DWORD *length) DECLSPEC_HIDDEN;
|
2013-09-04 08:56:46 +02:00
|
|
|
HRESULT load_resource_into_memory(HMODULE module, HRSRC resinfo, void **buffer, DWORD *length) DECLSPEC_HIDDEN;
|
2009-06-01 18:25:32 +02:00
|
|
|
|
2012-05-29 11:29:22 +02:00
|
|
|
HRESULT write_buffer_to_file(const WCHAR *filename, ID3DXBuffer *buffer) DECLSPEC_HIDDEN;
|
|
|
|
|
2012-09-03 09:57:41 +02:00
|
|
|
const struct pixel_format_desc *get_format_info(D3DFORMAT format) DECLSPEC_HIDDEN;
|
|
|
|
const struct pixel_format_desc *get_format_info_idx(int idx) DECLSPEC_HIDDEN;
|
2009-10-13 13:58:29 +02:00
|
|
|
|
2012-10-28 22:59:56 +01:00
|
|
|
void copy_pixels(const BYTE *src, UINT src_row_pitch, UINT src_slice_pitch,
|
|
|
|
BYTE *dst, UINT dst_row_pitch, UINT dst_slice_pitch, const struct volume *size,
|
|
|
|
const struct pixel_format_desc *format) DECLSPEC_HIDDEN;
|
2012-10-28 22:59:54 +01:00
|
|
|
void convert_argb_pixels(const BYTE *src, UINT src_row_pitch, UINT src_slice_pitch,
|
|
|
|
const struct volume *src_size, const struct pixel_format_desc *src_format,
|
|
|
|
BYTE *dst, UINT dst_row_pitch, UINT dst_slice_pitch, const struct volume *dst_size,
|
2013-05-19 22:32:18 +02:00
|
|
|
const struct pixel_format_desc *dst_format, D3DCOLOR color_key, const PALETTEENTRY *palette) DECLSPEC_HIDDEN;
|
2012-10-28 22:59:55 +01:00
|
|
|
void point_filter_argb_pixels(const BYTE *src, UINT src_row_pitch, UINT src_slice_pitch,
|
|
|
|
const struct volume *src_size, const struct pixel_format_desc *src_format,
|
|
|
|
BYTE *dst, UINT dst_row_pitch, UINT dst_slice_pitch, const struct volume *dst_size,
|
2013-05-19 22:32:18 +02:00
|
|
|
const struct pixel_format_desc *dst_format, D3DCOLOR color_key, const PALETTEENTRY *palette) DECLSPEC_HIDDEN;
|
2012-07-13 17:21:52 +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;
|
2012-07-03 16:06:45 +02:00
|
|
|
HRESULT load_volume_from_dds(IDirect3DVolume9 *dst_volume, const PALETTEENTRY *dst_palette,
|
|
|
|
const D3DBOX *dst_box, const void *src_data, const D3DBOX *src_box, DWORD filter, D3DCOLOR color_key,
|
|
|
|
const D3DXIMAGE_INFO *src_info) DECLSPEC_HIDDEN;
|
2012-06-29 14:17:01 +02:00
|
|
|
HRESULT load_volume_texture_from_dds(IDirect3DVolumeTexture9 *volume_texture, const void *src_data,
|
|
|
|
const PALETTEENTRY *palette, DWORD filter, DWORD color_key, const D3DXIMAGE_INFO *src_info) DECLSPEC_HIDDEN;
|
2012-05-13 23:00:06 +02:00
|
|
|
|
2013-01-10 22:18:08 +01:00
|
|
|
unsigned short float_32_to_16(const float in) 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;
|
2012-08-25 16:28:53 +02:00
|
|
|
const char *debug_d3dxparameter_registerset(D3DXREGISTER_SET r) DECLSPEC_HIDDEN;
|
2011-04-11 21:20:26 +02:00
|
|
|
|
2012-09-05 22:51:22 +02:00
|
|
|
/* parameter type conversion helpers */
|
2013-09-03 09:47:25 +02:00
|
|
|
void set_number(void *outdata, D3DXPARAMETER_TYPE outtype,
|
|
|
|
const void *indata, D3DXPARAMETER_TYPE intype) DECLSPEC_HIDDEN;
|
2012-09-05 22:51:22 +02:00
|
|
|
|
2008-03-14 14:12:30 +01:00
|
|
|
#endif /* __WINE_D3DX9_36_PRIVATE_H */
|