| 946 | } |
| 947 | |
| 948 | void DX11Engine::DisableCBuffers(Shader const* shader, DX11Shader* dxShader) |
| 949 | { |
| 950 | int32_t const index = ConstantBuffer::shaderDataLookup; |
| 951 | for (auto const& cb : shader->GetData(index)) |
| 952 | { |
| 953 | dxShader->DisableCBuffer(mImmediate, cb.bindPoint); |
| 954 | } |
| 955 | } |
| 956 | |
| 957 | void DX11Engine::EnableTBuffers(Shader const* shader, DX11Shader* dxShader) |
| 958 | { |
nothing calls this directly
no test coverage detected