2016-08-22 18:26:36 +00:00
|
|
|
//--------------------------------------------------------------------------------------
|
2020-05-10 00:22:35 +00:00
|
|
|
// File: ScreenGrab11.h
|
2016-08-22 18:26:36 +00:00
|
|
|
//
|
|
|
|
// Function for capturing a 2D texture and saving it to a file (aka a 'screenshot'
|
|
|
|
// when used on a Direct3D 11 Render Target).
|
|
|
|
//
|
|
|
|
// Note these functions are useful as a light-weight runtime screen grabber. For
|
|
|
|
// full-featured texture capture, DDS writer, and texture processing pipeline,
|
|
|
|
// see the 'Texconv' sample and the 'DirectXTex' library.
|
|
|
|
//
|
2021-02-27 06:59:42 +00:00
|
|
|
// Copyright (c) Microsoft Corporation.
|
2018-02-24 06:24:46 +00:00
|
|
|
// Licensed under the MIT License.
|
2016-08-22 18:26:36 +00:00
|
|
|
//
|
|
|
|
// http://go.microsoft.com/fwlink/?LinkId=248926
|
|
|
|
// http://go.microsoft.com/fwlink/?LinkId=248929
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <d3d11_1.h>
|
|
|
|
|
2021-04-15 00:59:56 +00:00
|
|
|
#ifdef NTDDI_WIN10_FE
|
|
|
|
#include <ocidl.h>
|
|
|
|
#else
|
2019-08-01 00:05:23 +00:00
|
|
|
#include <OCIdl.h>
|
2021-04-15 00:59:56 +00:00
|
|
|
#endif
|
|
|
|
|
2016-08-22 18:26:36 +00:00
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DirectX
|
|
|
|
{
|
2019-09-27 20:06:43 +00:00
|
|
|
HRESULT __cdecl SaveDDSTextureToFile(
|
|
|
|
_In_ ID3D11DeviceContext* pContext,
|
|
|
|
_In_ ID3D11Resource* pSource,
|
2020-03-10 08:05:10 +00:00
|
|
|
_In_z_ const wchar_t* fileName) noexcept;
|
2016-08-22 18:26:36 +00:00
|
|
|
|
2019-09-27 20:06:43 +00:00
|
|
|
HRESULT __cdecl SaveWICTextureToFile(
|
|
|
|
_In_ ID3D11DeviceContext* pContext,
|
|
|
|
_In_ ID3D11Resource* pSource,
|
|
|
|
_In_ REFGUID guidContainerFormat,
|
|
|
|
_In_z_ const wchar_t* fileName,
|
|
|
|
_In_opt_ const GUID* targetFormat = nullptr,
|
|
|
|
_In_opt_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr,
|
2020-05-31 05:14:59 +00:00
|
|
|
_In_ bool forceSRGB = false);
|
2019-08-01 00:05:23 +00:00
|
|
|
}
|