| 1411 | } |
| 1412 | |
| 1413 | void GPUContextVulkan::SetState(GPUPipelineState* state) |
| 1414 | { |
| 1415 | if (_currentState != state) |
| 1416 | { |
| 1417 | _currentState = static_cast<GPUPipelineStateVulkan*>(state); |
| 1418 | _psDirtyFlag = true; |
| 1419 | } |
| 1420 | } |
| 1421 | |
| 1422 | void GPUContextVulkan::ResetState() |
| 1423 | { |
no outgoing calls
no test coverage detected