| 452 | /* ----- Clear ----- */ |
| 453 | |
| 454 | static void ToVkClearColor(VkClearColorValue& dst, const ColorRGBAf& src) |
| 455 | { |
| 456 | dst.float32[0] = src.r; |
| 457 | dst.float32[1] = src.g; |
| 458 | dst.float32[2] = src.b; |
| 459 | dst.float32[3] = src.a; |
| 460 | } |
| 461 | |
| 462 | void VKCommandBuffer::SetClearColor(const ColorRGBAf& color) |
| 463 | { |
no outgoing calls
no test coverage detected