-------------------------------------------------------------------------
| 323 | } |
| 324 | //------------------------------------------------------------------------- |
| 325 | void VulkanQueue::getGraphicsEncoder() |
| 326 | { |
| 327 | if( mEncoderState != EncoderGraphicsOpen ) |
| 328 | { |
| 329 | endCopyEncoder(); |
| 330 | endComputeEncoder(); |
| 331 | |
| 332 | mEncoderState = EncoderGraphicsOpen; |
| 333 | } |
| 334 | } |
| 335 | //------------------------------------------------------------------------- |
| 336 | void VulkanQueue::getComputeEncoder() |
| 337 | { |
no test coverage detected