-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcbuffer.h
66 lines (55 loc) · 1.48 KB
/
cbuffer.h
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
#pragma once
namespace Framework
{
// Wrapper for constant buffers
template <typename T>
class CB
{
public:
void Init(ID3D11Device * pDevice);
void Update(ID3D11DeviceContext * pCtx, const T * pData);
void Bind(ID3D11DeviceContext * pCtx, int slot);
void Reset();
comptr<ID3D11Buffer> m_pBuf;
};
// Inline template implementation
template <typename T>
inline void CB<T>::Init(ID3D11Device * pDevice)
{
ASSERT_ERR(pDevice);
D3D11_BUFFER_DESC bufDesc =
{
((sizeof(T) + 15) / 16) * 16, // Round up to next 16 bytes
D3D11_USAGE_DYNAMIC,
D3D11_BIND_CONSTANT_BUFFER,
D3D11_CPU_ACCESS_WRITE,
};
CHECK_D3D(pDevice->CreateBuffer(&bufDesc, nullptr, &m_pBuf));
}
template <typename T>
inline void CB<T>::Update(ID3D11DeviceContext * pCtx, const T * pData)
{
ASSERT_ERR(pCtx);
ASSERT_ERR(pData);
D3D11_MAPPED_SUBRESOURCE mapped = {};
CHECK_D3D_WARN(pCtx->Map(m_pBuf, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped));
memcpy(mapped.pData, pData, sizeof(T));
pCtx->Unmap(m_pBuf, 0);
}
template <typename T>
inline void CB<T>::Bind(ID3D11DeviceContext * pCtx, int slot)
{
ASSERT_ERR(pCtx);
pCtx->VSSetConstantBuffers(slot, 1, &m_pBuf);
pCtx->HSSetConstantBuffers(slot, 1, &m_pBuf);
pCtx->DSSetConstantBuffers(slot, 1, &m_pBuf);
pCtx->GSSetConstantBuffers(slot, 1, &m_pBuf);
pCtx->PSSetConstantBuffers(slot, 1, &m_pBuf);
pCtx->CSSetConstantBuffers(slot, 1, &m_pBuf);
}
template <typename T>
inline void CB<T>::Reset()
{
m_pBuf.release();
}
}