| 3584 | } |
| 3585 | |
| 3586 | static void DestroyShader(VulkanContext* context, ShaderModule* shader) |
| 3587 | { |
| 3588 | if (!shader) |
| 3589 | { |
| 3590 | return; |
| 3591 | } |
| 3592 | |
| 3593 | DestroyShaderModule(context->m_LogicalDevice.m_Device, shader); |
| 3594 | } |
| 3595 | |
| 3596 | static void VulkanDeleteProgram(HContext _context, HProgram program) |
| 3597 | { |
no test coverage detected