| 3541 | } |
| 3542 | |
| 3543 | static void CreateComputeProgram(VulkanContext* context, VulkanProgram* program, ShaderModule* compute_module) |
| 3544 | { |
| 3545 | program->m_ComputeModule = compute_module; |
| 3546 | program->m_Hash = compute_module->m_Hash; |
| 3547 | CreateProgramResourceBindings(context, program); |
| 3548 | } |
| 3549 | |
| 3550 | static void CreateGraphicsProgram(VulkanContext* context, VulkanProgram* program, ShaderModule* vertex_module, ShaderModule* fragment_module) |
| 3551 | { |
no test coverage detected