| 1282 | } |
| 1283 | |
| 1284 | void DX11Engine::DisableSamplers(Shader const* shader, DX11Shader* dxShader) |
| 1285 | { |
| 1286 | int32_t const index = SamplerState::shaderDataLookup; |
| 1287 | for (auto const& ss : shader->GetData(index)) |
| 1288 | { |
| 1289 | dxShader->DisableSampler(mImmediate, ss.bindPoint); |
| 1290 | } |
| 1291 | } |
| 1292 | |
| 1293 | //---------------------------------------------------------------------------- |
| 1294 | // Public overrides from GraphicsEngine |
nothing calls this directly
no test coverage detected