2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:29:41 -06:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-13 13:50:06 -06:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-11-12 21:58:49 -07:00
|
|
|
#include <d3d11.h>
|
2017-09-03 00:33:47 -06:00
|
|
|
#include <d3d11_1.h>
|
2013-10-19 03:27:57 -06:00
|
|
|
#include <d3dcompiler.h>
|
2017-09-03 09:33:12 -06:00
|
|
|
#include <dxgi1_5.h>
|
2011-06-11 13:37:21 -06:00
|
|
|
#include <vector>
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/Common.h"
|
2017-02-03 09:57:41 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2016-10-07 14:55:13 -06:00
|
|
|
#include "Common/MsgHandler.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
|
2013-10-28 23:23:17 -06:00
|
|
|
namespace DX11
|
2011-01-29 13:16:51 -07:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
#define SAFE_RELEASE(x) \
|
|
|
|
{ \
|
|
|
|
if (x) \
|
|
|
|
(x)->Release(); \
|
|
|
|
(x) = nullptr; \
|
|
|
|
}
|
|
|
|
#define SAFE_DELETE(x) \
|
|
|
|
{ \
|
|
|
|
delete (x); \
|
|
|
|
(x) = nullptr; \
|
|
|
|
}
|
|
|
|
#define SAFE_DELETE_ARRAY(x) \
|
|
|
|
{ \
|
|
|
|
delete[](x); \
|
|
|
|
(x) = nullptr; \
|
|
|
|
}
|
|
|
|
#define CHECK(cond, Message, ...) \
|
|
|
|
if (!(cond)) \
|
|
|
|
{ \
|
|
|
|
PanicAlert(__FUNCTION__ " failed in %s at line %d: " Message, __FILE__, __LINE__, \
|
|
|
|
__VA_ARGS__); \
|
|
|
|
}
|
2010-06-13 13:50:06 -06:00
|
|
|
|
|
|
|
class D3DTexture2D;
|
2011-01-29 13:16:51 -07:00
|
|
|
|
2010-06-13 13:50:06 -06:00
|
|
|
namespace D3D
|
|
|
|
{
|
2010-11-23 12:58:02 -07:00
|
|
|
HRESULT LoadDXGI();
|
|
|
|
HRESULT LoadD3D();
|
2011-02-26 16:41:02 -07:00
|
|
|
HRESULT LoadD3DCompiler();
|
2010-11-21 08:34:04 -07:00
|
|
|
void UnloadDXGI();
|
2010-11-23 12:58:02 -07:00
|
|
|
void UnloadD3D();
|
2011-02-26 16:41:02 -07:00
|
|
|
void UnloadD3DCompiler();
|
2010-11-23 12:58:02 -07:00
|
|
|
|
2013-07-22 06:38:09 -06:00
|
|
|
D3D_FEATURE_LEVEL GetFeatureLevel(IDXGIAdapter* adapter);
|
2011-03-30 01:17:23 -06:00
|
|
|
std::vector<DXGI_SAMPLE_DESC> EnumAAModes(IDXGIAdapter* adapter);
|
2010-11-21 08:34:04 -07:00
|
|
|
|
2010-06-13 13:50:06 -06:00
|
|
|
HRESULT Create(HWND wnd);
|
|
|
|
void Close();
|
|
|
|
|
2011-06-11 13:37:21 -06:00
|
|
|
extern ID3D11Device* device;
|
2017-09-03 00:33:47 -06:00
|
|
|
extern ID3D11Device1* device1;
|
2011-06-11 13:37:21 -06:00
|
|
|
extern ID3D11DeviceContext* context;
|
2018-01-25 23:23:24 -07:00
|
|
|
extern IDXGISwapChain1* swapchain;
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2018-01-25 23:23:24 -07:00
|
|
|
void Reset(HWND new_wnd);
|
|
|
|
void ResizeSwapChain();
|
2010-06-13 13:50:06 -06:00
|
|
|
void Present();
|
|
|
|
|
2018-01-25 23:23:24 -07:00
|
|
|
D3DTexture2D* GetBackBuffer();
|
2010-06-16 17:25:19 -06:00
|
|
|
const char* PixelShaderVersionString();
|
2011-03-14 03:38:29 -06:00
|
|
|
const char* GeometryShaderVersionString();
|
2010-06-16 17:25:19 -06:00
|
|
|
const char* VertexShaderVersionString();
|
2018-02-09 05:59:51 -07:00
|
|
|
const char* ComputeShaderVersionString();
|
2010-06-18 19:02:43 -06:00
|
|
|
bool BGRATexturesSupported();
|
2017-09-03 09:33:12 -06:00
|
|
|
bool AllowTearingSupported();
|
2010-06-13 13:50:06 -06:00
|
|
|
|
2017-03-10 06:40:52 -07:00
|
|
|
u32 GetMaxTextureSize(D3D_FEATURE_LEVEL feature_level);
|
2010-07-11 10:26:46 -06:00
|
|
|
|
2014-07-26 05:00:49 -06:00
|
|
|
HRESULT SetFullscreenState(bool enable_fullscreen);
|
2016-11-08 17:41:38 -07:00
|
|
|
bool GetFullscreenState();
|
2014-07-26 05:00:49 -06:00
|
|
|
|
2014-11-14 12:46:49 -07:00
|
|
|
// This function will assign a name to the given resource.
|
2010-06-13 13:50:06 -06:00
|
|
|
// The DirectX debug layer will make it easier to identify resources that way,
|
|
|
|
// e.g. when listing up all resources who have unreleased references.
|
2017-09-02 12:22:18 -06:00
|
|
|
void SetDebugObjectName(ID3D11DeviceChild* resource, const char* name);
|
|
|
|
std::string GetDebugObjectName(ID3D11DeviceChild* resource);
|
2015-02-09 05:14:45 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
} // namespace D3D
|
2010-06-27 08:04:49 -06:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
typedef HRESULT(WINAPI* CREATEDXGIFACTORY)(REFIID, void**);
|
2010-11-21 08:34:04 -07:00
|
|
|
extern CREATEDXGIFACTORY PCreateDXGIFactory;
|
2016-06-24 02:43:46 -06:00
|
|
|
typedef HRESULT(WINAPI* D3D11CREATEDEVICE)(IDXGIAdapter*, D3D_DRIVER_TYPE, HMODULE, UINT,
|
|
|
|
CONST D3D_FEATURE_LEVEL*, UINT, UINT, ID3D11Device**,
|
|
|
|
D3D_FEATURE_LEVEL*, ID3D11DeviceContext**);
|
2011-01-29 13:16:51 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
extern pD3DCompile PD3DCompile;
|
2011-02-26 16:41:02 -07:00
|
|
|
|
2011-02-13 19:18:03 -07:00
|
|
|
} // namespace DX11
|