mirror of
https://github.com/microsoft/DirectXTex
synced 2024-11-08 14:00:05 +00:00
115 lines
3.4 KiB
C++
115 lines
3.4 KiB
C++
//--------------------------------------------------------------------------------------
|
|
// File: WICTextureLoader12.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
|
|
// http://go.microsoft.com/fwlink/?LinkID=615561
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef _WIN32
|
|
#error This module only supports Windows
|
|
#endif
|
|
|
|
#ifdef __MINGW32__
|
|
#include <unknwn.h>
|
|
#endif
|
|
|
|
#ifdef USING_DIRECTX_HEADERS
|
|
#include <directx/d3d12.h>
|
|
#include <dxguids/dxguids.h>
|
|
#else
|
|
#include <d3d12.h>
|
|
#pragma comment(lib,"dxguid.lib")
|
|
#endif
|
|
|
|
#pragma comment(lib,"windowscodecs.lib")
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <memory>
|
|
|
|
|
|
namespace DirectX
|
|
{
|
|
#ifndef WIC_LOADER_FLAGS_DEFINED
|
|
#define WIC_LOADER_FLAGS_DEFINED
|
|
enum WIC_LOADER_FLAGS : uint32_t
|
|
{
|
|
WIC_LOADER_DEFAULT = 0,
|
|
WIC_LOADER_FORCE_SRGB = 0x1,
|
|
WIC_LOADER_IGNORE_SRGB = 0x2,
|
|
WIC_LOADER_SRGB_DEFAULT = 0x4,
|
|
WIC_LOADER_MIP_AUTOGEN = 0x8,
|
|
WIC_LOADER_MIP_RESERVE = 0x10,
|
|
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 __cdecl LoadWICTextureFromMemory(
|
|
_In_ ID3D12Device* d3dDevice,
|
|
_In_reads_bytes_(wicDataSize) const uint8_t* wicData,
|
|
size_t wicDataSize,
|
|
_Outptr_ ID3D12Resource** texture,
|
|
std::unique_ptr<uint8_t[]>& decodedData,
|
|
D3D12_SUBRESOURCE_DATA& subresource,
|
|
size_t maxsize = 0) noexcept;
|
|
|
|
HRESULT __cdecl LoadWICTextureFromFile(
|
|
_In_ ID3D12Device* d3dDevice,
|
|
_In_z_ const wchar_t* szFileName,
|
|
_Outptr_ ID3D12Resource** texture,
|
|
std::unique_ptr<uint8_t[]>& decodedData,
|
|
D3D12_SUBRESOURCE_DATA& subresource,
|
|
size_t maxsize = 0) noexcept;
|
|
|
|
// Extended version
|
|
HRESULT __cdecl LoadWICTextureFromMemoryEx(
|
|
_In_ ID3D12Device* d3dDevice,
|
|
_In_reads_bytes_(wicDataSize) const uint8_t* wicData,
|
|
size_t wicDataSize,
|
|
size_t maxsize,
|
|
D3D12_RESOURCE_FLAGS resFlags,
|
|
WIC_LOADER_FLAGS loadFlags,
|
|
_Outptr_ ID3D12Resource** texture,
|
|
std::unique_ptr<uint8_t[]>& decodedData,
|
|
D3D12_SUBRESOURCE_DATA& subresource) noexcept;
|
|
|
|
HRESULT __cdecl LoadWICTextureFromFileEx(
|
|
_In_ ID3D12Device* d3dDevice,
|
|
_In_z_ const wchar_t* szFileName,
|
|
size_t maxsize,
|
|
D3D12_RESOURCE_FLAGS resFlags,
|
|
WIC_LOADER_FLAGS loadFlags,
|
|
_Outptr_ ID3D12Resource** texture,
|
|
std::unique_ptr<uint8_t[]>& decodedData,
|
|
D3D12_SUBRESOURCE_DATA& subresource) noexcept;
|
|
}
|