1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2015 Baldur Karlsson
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
******************************************************************************/
#pragma once
#include "../test_common.h"
#include "dx/official/d3dcompiler.h"
#include "dx/official/dxgi.h"
#include "d3d11_helpers.h"
typedef HRESULT(WINAPI *pD3DStripShader)(_In_reads_bytes_(BytecodeLength) LPCVOID pShaderBytecode,
_In_ SIZE_T BytecodeLength, _In_ UINT uStripFlags,
_Out_ ID3DBlob **ppStrippedBlob);
typedef HRESULT(WINAPI *pD3DSetBlobPart)(_In_reads_bytes_(SrcDataSize) LPCVOID pSrcData,
_In_ SIZE_T SrcDataSize, _In_ D3D_BLOB_PART Part,
_In_ UINT Flags, _In_reads_bytes_(PartSize) LPCVOID pPart,
_In_ SIZE_T PartSize, _Out_ ID3DBlob **ppNewShader);
struct Win32Window;
struct D3D11GraphicsTest : public GraphicsTest
{
static const TestAPI API = TestAPI::D3D11;
~D3D11GraphicsTest();
bool Init(int argc, char **argv);
GraphicsWindow *MakeWindow(int width, int height, const char *title);
bool IsSupported();
void PostDeviceCreate();
enum BufType
{
eCBuffer = 0x0,
eStageBuffer = 0x1,
eVBuffer = 0x2,
eIBuffer = 0x4,
eBuffer = 0x8,
eCompBuffer = 0x10,
eSOBuffer = 0x20,
BufMajorType = 0xff,
eAppend = 0x100,
eRawBuffer = 0x200,
BufUAVType = 0xf00,
};
ID3DBlobPtr Compile(std::string src, std::string entry, std::string profile,
ID3DBlob **unstripped = NULL);
void WriteBlob(std::string name, ID3DBlob *blob, bool compress);
ID3D11VertexShaderPtr CreateVS(ID3DBlobPtr blob);
ID3D11PixelShaderPtr CreatePS(ID3DBlobPtr blob);
ID3D11ComputeShaderPtr CreateCS(ID3DBlobPtr blob);
ID3D11GeometryShaderPtr CreateGS(ID3DBlobPtr blob,
const std::vector<D3D11_SO_DECLARATION_ENTRY> &sodecl,
const std::vector<UINT> &strides);
ID3DBlobPtr SetBlobPath(std::string name, ID3DBlob *blob);
void SetBlobPath(std::string name, ID3D11DeviceChild *shader);
void CreateDefaultInputLayout(ID3DBlobPtr vsblob);
D3D11BufferCreator MakeBuffer() { return D3D11BufferCreator(this); }
D3D11TextureCreator MakeTexture(DXGI_FORMAT format, UINT width)
{
return D3D11TextureCreator(this, format, width, 1, 1);
}
D3D11TextureCreator MakeTexture(DXGI_FORMAT format, UINT width, UINT height)
{
return D3D11TextureCreator(this, format, width, height, 1);
}
D3D11TextureCreator MakeTexture(DXGI_FORMAT format, UINT width, UINT height, UINT depth)
{
return D3D11TextureCreator(this, format, width, height, depth);
}
template <typename T>
D3D11ViewCreator MakeSRV(T res)
{
return D3D11ViewCreator(this, ViewType::SRV, res);
}
template <typename T>
D3D11ViewCreator MakeRTV(T res)
{
return D3D11ViewCreator(this, ViewType::RTV, res);
}
template <typename T>
D3D11ViewCreator MakeDSV(T res)
{
return D3D11ViewCreator(this, ViewType::DSV, res);
}
template <typename T>
D3D11ViewCreator MakeUAV(T res)
{
return D3D11ViewCreator(this, ViewType::UAV, res);
}
std::vector<byte> GetBufferData(ID3D11Buffer *buf, uint32_t offset = 0, uint32_t len = 0);
D3D11_MAPPED_SUBRESOURCE Map(ID3D11Resource *res, UINT sub, D3D11_MAP type)
{
D3D11_MAPPED_SUBRESOURCE mapped;
ctx->Map(res, sub, type, 0, &mapped);
return mapped;
}
struct VBBind
{
ID3D11Buffer *buf;
UINT stride;
UINT offset;
};
void IASetVertexBuffer(ID3D11Buffer *vb, UINT stride, UINT offset);
void ClearRenderTargetView(ID3D11RenderTargetView *rt, Vec4f col);
void RSSetViewport(D3D11_VIEWPORT view);
D3D11_DEPTH_STENCIL_DESC GetDepthState();
void SetDepthState(const D3D11_DEPTH_STENCIL_DESC &desc);
void SetStencilRef(UINT ref);
bool Running();
void Present();
DXGI_FORMAT backbufferFmt = DXGI_FORMAT_R8G8B8A8_UNORM_SRGB;
int backbufferCount = 2;
int backbufferMSAA = 1;
bool d3d11_1 = false;
bool d3d11_2 = false;
D3D11_FEATURE_DATA_D3D11_OPTIONS opts;
D3D11_FEATURE_DATA_D3D11_OPTIONS1 opts1;
ID3D11DepthStencilStatePtr depthState;
pD3DCompile dyn_D3DCompile = NULL;
pD3DStripShader dyn_D3DStripShader = NULL;
pD3DSetBlobPart dyn_D3DSetBlobPart = NULL;
PFN_D3D11_CREATE_DEVICE dyn_D3D11CreateDevice = NULL;
PFN_D3D11_CREATE_DEVICE_AND_SWAP_CHAIN dyn_D3D11CreateDeviceAndSwapChain = NULL;
GraphicsWindow *mainWindow = NULL;
IDXGISwapChainPtr swap;
ID3D11InputLayoutPtr defaultLayout;
ID3D11Texture2DPtr bbTex;
ID3D11RenderTargetViewPtr bbRTV;
ID3D11DevicePtr dev;
ID3D11Device1Ptr dev1;
ID3D11Device2Ptr dev2;
ID3D11DeviceContextPtr ctx;
ID3D11DeviceContext1Ptr ctx1;
ID3D11DeviceContext2Ptr ctx2;
ID3DUserDefinedAnnotationPtr annot;
};
|