|
ReactOS 0.4.17-dev-923-g4c9a150
|
#include "wine/debug.h"#include "d3d10_1.h"#include "d3dx10.h"#include "wincodec.h"#include "dxhelpers.h"
Go to the source code of this file.
Macros | |
| #define | COBJMACROS |
Variables | |
| struct { | |
| const GUID * wic_container_guid | |
| D3DX10_IMAGE_FILE_FORMAT d3dx_file_format | |
| } | file_formats [] |
| struct { | |
| const GUID * wic_guid | |
| DXGI_FORMAT dxgi_format | |
| } | wic_pixel_formats [] |
|
static |
Definition at line 779 of file texture.c.
Referenced by load_texture_data().
| HRESULT create_d3d_texture | ( | ID3D10Device * | device, |
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| D3D10_SUBRESOURCE_DATA * | resource_data, | ||
| ID3D10Resource ** | texture | ||
| ) |
Definition at line 1027 of file texture.c.
Referenced by create_texture(), and texture_processor_CreateDeviceObject().
|
static |
Definition at line 558 of file texture.c.
Referenced by D3DX10CreateTextureFromFileW(), D3DX10CreateTextureFromMemory(), D3DX10CreateTextureFromResourceA(), and D3DX10CreateTextureFromResourceW().
| HRESULT WINAPI D3DX10CreateTextureFromFileA | ( | ID3D10Device * | device, |
| const char * | src_file, | ||
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| ID3DX10ThreadPump * | pump, | ||
| ID3D10Resource ** | texture, | ||
| HRESULT * | hresult | ||
| ) |
Definition at line 574 of file texture.c.
| HRESULT WINAPI D3DX10CreateTextureFromFileW | ( | ID3D10Device * | device, |
| const WCHAR * | src_file, | ||
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| ID3DX10ThreadPump * | pump, | ||
| ID3D10Resource ** | texture, | ||
| HRESULT * | hresult | ||
| ) |
Definition at line 603 of file texture.c.
Referenced by D3DX10CreateTextureFromFileA().
| HRESULT WINAPI D3DX10CreateTextureFromMemory | ( | ID3D10Device * | device, |
| const void * | src_data, | ||
| SIZE_T | src_data_size, | ||
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| ID3DX10ThreadPump * | pump, | ||
| ID3D10Resource ** | texture, | ||
| HRESULT * | hresult | ||
| ) |
Definition at line 1052 of file texture.c.
| HRESULT WINAPI D3DX10CreateTextureFromResourceA | ( | ID3D10Device * | device, |
| HMODULE | module, | ||
| const char * | resource, | ||
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| ID3DX10ThreadPump * | pump, | ||
| ID3D10Resource ** | texture, | ||
| HRESULT * | hresult | ||
| ) |
Definition at line 648 of file texture.c.
| HRESULT WINAPI D3DX10CreateTextureFromResourceW | ( | ID3D10Device * | device, |
| HMODULE | module, | ||
| const WCHAR * | resource, | ||
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| ID3DX10ThreadPump * | pump, | ||
| ID3D10Resource ** | texture, | ||
| HRESULT * | hresult | ||
| ) |
Definition at line 689 of file texture.c.
| HRESULT WINAPI D3DX10GetImageInfoFromFileA | ( | const char * | src_file, |
| ID3DX10ThreadPump * | pump, | ||
| D3DX10_IMAGE_INFO * | info, | ||
| HRESULT * | result | ||
| ) |
Definition at line 279 of file texture.c.
| HRESULT WINAPI D3DX10GetImageInfoFromFileW | ( | const WCHAR * | src_file, |
| ID3DX10ThreadPump * | pump, | ||
| D3DX10_IMAGE_INFO * | info, | ||
| HRESULT * | result | ||
| ) |
Definition at line 307 of file texture.c.
Referenced by D3DX10GetImageInfoFromFileA().
| HRESULT WINAPI D3DX10GetImageInfoFromMemory | ( | const void * | src_data, |
| SIZE_T | src_data_size, | ||
| ID3DX10ThreadPump * | pump, | ||
| D3DX10_IMAGE_INFO * | img_info, | ||
| HRESULT * | result | ||
| ) |
Definition at line 521 of file texture.c.
Referenced by load_texture_data().
| HRESULT WINAPI D3DX10GetImageInfoFromResourceA | ( | HMODULE | module, |
| const char * | resource, | ||
| ID3DX10ThreadPump * | pump, | ||
| D3DX10_IMAGE_INFO * | info, | ||
| HRESULT * | result | ||
| ) |
Definition at line 350 of file texture.c.
| HRESULT WINAPI D3DX10GetImageInfoFromResourceW | ( | HMODULE | module, |
| const WCHAR * | resource, | ||
| ID3DX10ThreadPump * | pump, | ||
| D3DX10_IMAGE_INFO * | info, | ||
| HRESULT * | result | ||
| ) |
Definition at line 388 of file texture.c.
|
static |
Definition at line 753 of file texture.c.
Referenced by load_texture_data().
|
static |
Definition at line 86 of file texture.c.
Referenced by load_texture_data().
|
static |
Definition at line 115 of file texture.c.
Referenced by dds_get_frame_info(), and load_texture_data().
|
static |
Definition at line 249 of file texture.c.
Referenced by get_image_info().
| HRESULT get_image_info | ( | const void * | data, |
| SIZE_T | size, | ||
| D3DX10_IMAGE_INFO * | img_info | ||
| ) |
Definition at line 426 of file texture.c.
Referenced by D3DX10GetImageInfoFromFileW(), D3DX10GetImageInfoFromMemory(), D3DX10GetImageInfoFromResourceA(), D3DX10GetImageInfoFromResourceW(), and texture_info_processor_Process().
| void init_load_info | ( | const D3DX10_IMAGE_LOAD_INFO * | load_info, |
| D3DX10_IMAGE_LOAD_INFO * | out | ||
| ) |
Definition at line 730 of file texture.c.
Referenced by create_texture(), and D3DX10CreateAsyncTextureProcessor().
| HRESULT load_texture_data | ( | const void * | data, |
| SIZE_T | size, | ||
| D3DX10_IMAGE_LOAD_INFO * | load_info, | ||
| D3D10_SUBRESOURCE_DATA ** | resource_data | ||
| ) |
Definition at line 822 of file texture.c.
Referenced by create_texture(), and texture_processor_Process().
|
static |
Definition at line 74 of file texture.c.
Referenced by get_image_info().
|
static |
Definition at line 99 of file texture.c.
Referenced by get_image_info().
| HRESULT WINAPI WICCreateImagingFactory_Proxy | ( | UINT | sdk_version, |
| IWICImagingFactory ** | imaging_factory | ||
| ) |
Definition at line 649 of file proxy.c.
Referenced by get_image_info(), and load_texture_data().
| WINE_DEFAULT_DEBUG_CHANNEL | ( | d3dx | ) |
| D3DX10_IMAGE_FILE_FORMAT d3dx_file_format |
Definition at line 35 of file texture.c.
Referenced by d3dx_initialize_image_from_wic(), and wic_container_guid_to_file_format().
| DXGI_FORMAT dxgi_format |
Definition at line 51 of file texture.c.
Referenced by dxgi_format_is_depth_stencil(), dxgi_format_to_wic_format(), dxgi_format_to_wic_guid(), vkd3d_find_uint_format(), vkd3d_fixup_clear_uav_uint_colour(), vkd3d_get_depth_stencil_format(), vkd3d_get_dxgi_format(), vkd3d_get_format(), vkd3d_get_format_compatibility_list(), and vkd3d_init_format_compatibility_lists().
| const struct { ... } file_formats[] |
Referenced by wic_container_guid_to_file_format().
Definition at line 34 of file texture.c.
Referenced by wic_container_guid_to_file_format().
| const struct { ... } wic_pixel_formats[] |
Referenced by dxgi_format_to_wic_guid().