77 строки
1.6 KiB
C++
77 строки
1.6 KiB
C++
//--------------------------------------------------------------------------------------
|
|
// pch.h
|
|
//
|
|
// Header for standard system include files.
|
|
//
|
|
// Advanced Technology Group (ATG)
|
|
// Copyright (C) Microsoft Corporation. All rights reserved.
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
// Use the C++ standard templated min/max
|
|
#define NOMINMAX
|
|
|
|
#include <xdk.h>
|
|
|
|
#if _XDK_VER < 0x3AD703ED /* XDK Edition 170300 */
|
|
#error This sample requires the March 2017 XDK or later
|
|
#endif
|
|
|
|
#include <wrl.h>
|
|
|
|
#include <d3d11_x.h>
|
|
#include <DirectXMath.h>
|
|
#include <DirectXColors.h>
|
|
|
|
#include <algorithm>
|
|
#include <exception>
|
|
#include <memory>
|
|
#include <stdexcept>
|
|
|
|
#include <stdio.h>
|
|
#include <pix.h>
|
|
|
|
#include "GamePad.h"
|
|
#include "GraphicsMemory.h"
|
|
|
|
// For built in coroutine types
|
|
#include <winrt\base.h>
|
|
|
|
#include <chrono>
|
|
#include <future>
|
|
#include <winrt\base.h>
|
|
#include <mutex>
|
|
#include <new>
|
|
|
|
#include "SpriteBatch.h"
|
|
#include "SpriteFont.h"
|
|
|
|
namespace DX
|
|
{
|
|
// Helper class for COM exceptions
|
|
class com_exception : public std::exception
|
|
{
|
|
public:
|
|
com_exception(HRESULT hr) noexcept : result(hr) {}
|
|
|
|
const char* what() const override
|
|
{
|
|
static char s_str[64] = {};
|
|
sprintf_s(s_str, "Failure with HRESULT of %08X", static_cast<unsigned int>(result));
|
|
return s_str;
|
|
}
|
|
|
|
private:
|
|
HRESULT result;
|
|
};
|
|
|
|
// Helper utility converts D3D API failures into exceptions.
|
|
inline void ThrowIfFailed(HRESULT hr)
|
|
{
|
|
if (FAILED(hr))
|
|
{
|
|
throw com_exception(hr);
|
|
}
|
|
}
|
|
} |