bgfx/src/renderer_d3d11.h

277 lines
6 KiB
C
Raw Normal View History

2012-07-23 00:08:58 -04:00
/*
2014-02-11 01:07:04 -05:00
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
2012-07-23 00:08:58 -04:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#ifndef BGFX_RENDERER_D3D11_H_HEADER_GUARD
#define BGFX_RENDERER_D3D11_H_HEADER_GUARD
2012-07-23 00:08:58 -04:00
#define USE_D3D11_DYNAMIC_LIB !BX_PLATFORM_WINRT
#if !USE_D3D11_DYNAMIC_LIB
# undef BGFX_CONFIG_DEBUG_PIX
# define BGFX_CONFIG_DEBUG_PIX 0
#endif // !USE_D3D11_DYNAMIC_LIB
2014-10-18 18:44:45 -04:00
BX_PRAGMA_DIAGNOSTIC_PUSH();
BX_PRAGMA_DIAGNOSTIC_IGNORED_CLANG("-Wunknown-pragmas" );
BX_PRAGMA_DIAGNOSTIC_IGNORED_GCC("-Wpragmas");
BX_PRAGMA_DIAGNOSTIC_IGNORED_MSVC(4005) // warning C4005: '' : macro redefinition
2012-08-19 21:50:23 -04:00
#define D3D11_NO_HELPERS
#if BX_PLATFORM_WINRT
#include <d3d11_2.h>
#else
2014-10-18 18:44:45 -04:00
#include <d3d11.h>
#endif
2014-10-18 18:44:45 -04:00
BX_PRAGMA_DIAGNOSTIC_POP()
2014-09-28 14:03:47 -04:00
2014-12-27 22:00:41 -05:00
#include "renderer.h"
2012-07-23 00:08:58 -04:00
#include "renderer_d3d.h"
2014-10-29 01:08:55 -04:00
#include "ovr.h"
#include "renderdoc.h"
2012-07-23 00:08:58 -04:00
2014-10-29 01:08:55 -04:00
#ifndef D3DCOLOR_ARGB
# define D3DCOLOR_ARGB(_a, _r, _g, _b) ( (DWORD)( ( ( (_a)&0xff)<<24)|( ( (_r)&0xff)<<16)|( ( (_g)&0xff)<<8)|( (_b)&0xff) ) )
#endif // D3DCOLOR_ARGB
#ifndef D3DCOLOR_RGBA
# define D3DCOLOR_RGBA(_r, _g, _b, _a) D3DCOLOR_ARGB(_a, _r, _g, _b)
#endif // D3DCOLOR_RGBA
#ifndef DXGI_FORMAT_B4G4R4A4_UNORM
// Win8 only BS
// https://blogs.msdn.com/b/chuckw/archive/2012/11/14/directx-11-1-and-windows-7.aspx?Redirected=true
// http://msdn.microsoft.com/en-us/library/windows/desktop/bb173059%28v=vs.85%29.aspx
# define DXGI_FORMAT_B4G4R4A4_UNORM DXGI_FORMAT(115)
#endif // DXGI_FORMAT_B4G4R4A4_UNORM
#ifndef D3D_FEATURE_LEVEL_11_1
# define D3D_FEATURE_LEVEL_11_1 D3D_FEATURE_LEVEL(0xb100)
#endif // D3D_FEATURE_LEVEL_11_1
2012-07-23 00:08:58 -04:00
namespace bgfx
{
struct IndexBufferD3D11
2012-07-23 00:08:58 -04:00
{
IndexBufferD3D11()
2012-07-23 00:08:58 -04:00
: m_ptr(NULL)
, m_dynamic(false)
{
}
void create(uint32_t _size, void* _data);
void update(uint32_t _offset, uint32_t _size, void* _data);
void destroy()
{
if (NULL != m_ptr)
{
DX_RELEASE(m_ptr, 0);
m_dynamic = false;
}
}
ID3D11Buffer* m_ptr;
uint32_t m_size;
bool m_dynamic;
};
struct VertexBufferD3D11
2012-07-23 00:08:58 -04:00
{
VertexBufferD3D11()
2012-07-23 00:08:58 -04:00
: m_ptr(NULL)
2014-12-10 02:16:27 -05:00
, m_srv(NULL)
, m_uav(NULL)
2012-07-23 00:08:58 -04:00
, m_dynamic(false)
{
}
2014-12-10 02:16:27 -05:00
void create(uint32_t _size, void* _data, VertexDeclHandle _declHandle, uint8_t _flags);
2014-08-29 00:02:55 -04:00
void update(uint32_t _offset, uint32_t _size, void* _data, bool _discard = false);
2012-07-23 00:08:58 -04:00
void destroy()
{
if (NULL != m_ptr)
{
DX_RELEASE(m_ptr, 0);
m_dynamic = false;
}
2014-12-10 02:16:27 -05:00
DX_RELEASE(m_srv, 0);
DX_RELEASE(m_uav, 0);
2012-07-23 00:08:58 -04:00
}
ID3D11Buffer* m_ptr;
2014-12-10 02:16:27 -05:00
ID3D11ShaderResourceView* m_srv;
ID3D11UnorderedAccessView* m_uav;
2012-07-23 00:08:58 -04:00
uint32_t m_size;
VertexDeclHandle m_decl;
bool m_dynamic;
};
struct ShaderD3D11
2012-07-23 00:08:58 -04:00
{
ShaderD3D11()
2012-07-23 00:08:58 -04:00
: m_ptr(NULL)
, m_code(NULL)
, m_buffer(NULL)
2013-09-21 01:13:58 -04:00
, m_constantBuffer(NULL)
2012-07-23 00:08:58 -04:00
, m_hash(0)
2013-09-21 01:13:58 -04:00
, m_numUniforms(0)
, m_numPredefined(0)
2012-07-23 00:08:58 -04:00
{
}
void create(const Memory* _mem);
2012-07-23 00:08:58 -04:00
DWORD* getShaderCode(uint8_t _fragmentBit, const Memory* _mem);
void destroy()
{
2013-09-21 01:13:58 -04:00
if (NULL != m_constantBuffer)
{
ConstantBuffer::destroy(m_constantBuffer);
m_constantBuffer = NULL;
}
2012-07-23 00:08:58 -04:00
m_numPredefined = 0;
if (NULL != m_buffer)
{
DX_RELEASE(m_buffer, 0);
}
DX_RELEASE(m_ptr, 0);
if (NULL != m_code)
{
release(m_code);
m_code = NULL;
m_hash = 0;
}
}
2014-07-20 23:27:13 -04:00
union
{
ID3D11ComputeShader* m_computeShader;
ID3D11PixelShader* m_pixelShader;
ID3D11VertexShader* m_vertexShader;
IUnknown* m_ptr;
};
2012-07-23 00:08:58 -04:00
const Memory* m_code;
ID3D11Buffer* m_buffer;
ConstantBuffer* m_constantBuffer;
PredefinedUniform m_predefined[PredefinedUniform::Count];
2012-08-29 01:59:48 -04:00
uint8_t m_attrMask[Attrib::Count];
2012-07-23 00:08:58 -04:00
uint32_t m_hash;
uint16_t m_numUniforms;
uint8_t m_numPredefined;
};
struct ProgramD3D11
2012-07-23 00:08:58 -04:00
{
ProgramD3D11()
2012-07-23 00:08:58 -04:00
: m_vsh(NULL)
, m_fsh(NULL)
{
}
2014-07-20 23:27:13 -04:00
void create(const ShaderD3D11* _vsh, const ShaderD3D11* _fsh)
2012-07-23 00:08:58 -04:00
{
2014-07-20 23:27:13 -04:00
BX_CHECK(NULL != _vsh->m_ptr, "Vertex shader doesn't exist.");
m_vsh = _vsh;
memcpy(&m_predefined[0], _vsh->m_predefined, _vsh->m_numPredefined*sizeof(PredefinedUniform) );
m_numPredefined = _vsh->m_numPredefined;
if (NULL != _fsh)
{
BX_CHECK(NULL != _fsh->m_ptr, "Fragment shader doesn't exist.");
m_fsh = _fsh;
memcpy(&m_predefined[m_numPredefined], _fsh->m_predefined, _fsh->m_numPredefined*sizeof(PredefinedUniform) );
m_numPredefined += _fsh->m_numPredefined;
}
2012-07-23 00:08:58 -04:00
}
void destroy()
{
m_numPredefined = 0;
m_vsh = NULL;
m_fsh = NULL;
}
const ShaderD3D11* m_vsh;
const ShaderD3D11* m_fsh;
2012-07-23 00:08:58 -04:00
PredefinedUniform m_predefined[PredefinedUniform::Count*2];
uint8_t m_numPredefined;
};
struct TextureD3D11
2012-07-23 00:08:58 -04:00
{
enum Enum
{
Texture2D,
Texture3D,
TextureCube,
};
TextureD3D11()
2012-08-19 21:50:23 -04:00
: m_ptr(NULL)
, m_srv(NULL)
2014-07-20 23:27:13 -04:00
, m_uav(NULL)
2012-08-19 21:50:23 -04:00
, m_sampler(NULL)
, m_numMips(0)
2012-07-23 00:08:58 -04:00
{
}
void create(const Memory* _mem, uint32_t _flags, uint8_t _skip);
2013-02-10 21:12:52 -05:00
void destroy();
2013-11-16 13:58:15 -05:00
void update(uint8_t _side, uint8_t _mip, const Rect& _rect, uint16_t _z, uint16_t _depth, uint16_t _pitch, const Memory* _mem);
void commit(uint8_t _stage, uint32_t _flags = BGFX_SAMPLER_DEFAULT_FLAGS);
2014-02-06 02:07:11 -05:00
void resolve();
2012-07-23 00:08:58 -04:00
2012-08-19 21:50:23 -04:00
union
{
ID3D11Resource* m_ptr;
ID3D11Texture2D* m_texture2d;
ID3D11Texture3D* m_texture3d;
2012-08-19 21:50:23 -04:00
};
2012-08-13 00:02:11 -04:00
ID3D11ShaderResourceView* m_srv;
2014-07-20 23:27:13 -04:00
ID3D11UnorderedAccessView* m_uav;
2012-07-23 00:08:58 -04:00
ID3D11SamplerState* m_sampler;
2014-02-06 02:07:11 -05:00
uint32_t m_flags;
uint8_t m_type;
uint8_t m_requestedFormat;
uint8_t m_textureFormat;
2012-08-19 21:50:23 -04:00
uint8_t m_numMips;
2012-07-23 00:08:58 -04:00
};
struct FrameBufferD3D11
2012-07-23 00:08:58 -04:00
{
FrameBufferD3D11()
2014-09-07 20:17:38 -04:00
: m_denseIdx(UINT16_MAX)
, m_num(0)
2012-07-23 00:08:58 -04:00
{
}
2014-02-06 02:07:11 -05:00
void create(uint8_t _num, const TextureHandle* _handles);
2014-09-07 20:17:38 -04:00
void create(uint16_t _denseIdx, void* _nwh, uint32_t _width, uint32_t _height, TextureFormat::Enum _depthFormat);
uint16_t destroy();
2014-02-06 02:07:11 -05:00
void resolve();
2014-09-01 14:24:51 -04:00
void clear(const Clear& _clear, const float _palette[][4]);
2012-08-05 17:51:49 -04:00
2014-02-06 02:07:11 -05:00
ID3D11RenderTargetView* m_rtv[BGFX_CONFIG_MAX_FRAME_BUFFER_ATTACHMENTS-1];
ID3D11ShaderResourceView* m_srv[BGFX_CONFIG_MAX_FRAME_BUFFER_ATTACHMENTS-1];
ID3D11DepthStencilView* m_dsv;
2014-09-07 20:17:38 -04:00
IDXGISwapChain* m_swapChain;
uint16_t m_denseIdx;
2014-02-06 02:07:11 -05:00
uint8_t m_num;
2012-07-23 00:08:58 -04:00
};
} // namespace bgfx
#endif // BGFX_RENDERER_D3D11_H_HEADER_GUARD