mirror of
https://github.com/microsoft/DirectXTex
synced 2024-11-09 22:40:06 +00:00
93 lines
2.8 KiB
C++
93 lines
2.8 KiB
C++
//--------------------------------------------------------------------------------------
|
|
// File: WICTextureLoader9.h
|
|
//
|
|
// Function for loading a WIC image and creating a Direct3D runtime texture for it
|
|
// (auto-generating mipmaps if possible)
|
|
//
|
|
// Note: Assumes application has already called CoInitializeEx
|
|
//
|
|
// Note these functions are useful for images created as simple 2D textures. For
|
|
// more complex resources, DDSTextureLoader is an excellent light-weight runtime loader.
|
|
// For a full-featured DDS file reader, writer, and texture processing pipeline see
|
|
// the 'Texconv' sample and the 'DirectXTex' library.
|
|
//
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
//
|
|
// http://go.microsoft.com/fwlink/?LinkId=248926
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef DIRECT3D_VERSION
|
|
#define DIRECT3D_VERSION 0x900
|
|
#endif
|
|
#include <d3d9.h>
|
|
|
|
#pragma comment(lib,"windowscodecs.lib")
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
namespace DirectX
|
|
{
|
|
#ifndef WIC_LOADER_FLAGS_DEFINED
|
|
#define WIC_LOADER_FLAGS_DEFINED
|
|
enum WIC_LOADER_FLAGS : uint32_t
|
|
{
|
|
WIC_LOADER_DEFAULT = 0,
|
|
WIC_LOADER_MIP_AUTOGEN = 0x8,
|
|
WIC_LOADER_FIT_POW2 = 0x20,
|
|
WIC_LOADER_MAKE_SQUARE = 0x40,
|
|
WIC_LOADER_FORCE_RGBA32 = 0x80,
|
|
};
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wdeprecated-dynamic-exception-spec"
|
|
#endif
|
|
|
|
DEFINE_ENUM_FLAG_OPERATORS(WIC_LOADER_FLAGS);
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#endif
|
|
|
|
// Standard version
|
|
HRESULT CreateWICTextureFromMemory(
|
|
_In_ LPDIRECT3DDEVICE9 d3dDevice,
|
|
_In_reads_bytes_(wicDataSize) const uint8_t* wicData,
|
|
_In_ size_t wicDataSize,
|
|
_Outptr_ LPDIRECT3DTEXTURE9* texture,
|
|
_In_ size_t maxsize = 0,
|
|
_In_ WIC_LOADER_FLAGS loadFlags = WIC_LOADER_DEFAULT) noexcept;
|
|
|
|
HRESULT CreateWICTextureFromFile(
|
|
_In_ LPDIRECT3DDEVICE9 d3dDevice,
|
|
_In_z_ const wchar_t* fileName,
|
|
_Outptr_ LPDIRECT3DTEXTURE9* texture,
|
|
_In_ size_t maxsize = 0,
|
|
_In_ WIC_LOADER_FLAGS loadFlags = WIC_LOADER_DEFAULT) noexcept;
|
|
|
|
// Extended version
|
|
HRESULT CreateWICTextureFromMemoryEx(
|
|
_In_ LPDIRECT3DDEVICE9 d3dDevice,
|
|
_In_reads_bytes_(wicDataSize) const uint8_t* wicData,
|
|
_In_ size_t wicDataSize,
|
|
_In_ size_t maxsize,
|
|
_In_ DWORD usage,
|
|
_In_ D3DPOOL pool,
|
|
_In_ WIC_LOADER_FLAGS loadFlags,
|
|
_Outptr_ LPDIRECT3DTEXTURE9* texture) noexcept;
|
|
|
|
HRESULT CreateWICTextureFromFileEx(
|
|
_In_ LPDIRECT3DDEVICE9 d3dDevice,
|
|
_In_z_ const wchar_t* fileName,
|
|
_In_ size_t maxsize,
|
|
_In_ DWORD usage,
|
|
_In_ D3DPOOL pool,
|
|
_In_ WIC_LOADER_FLAGS loadFlags,
|
|
_Outptr_ LPDIRECT3DTEXTURE9* texture) noexcept;
|
|
}
|