| 2604 | } |
| 2605 | |
| 2606 | vk::ShaderModule Demo::prepare_fs() { |
| 2607 | const uint32_t fragShaderCode[] = { |
| 2608 | #ifdef CUBE_FRAG_INC |
| 2609 | #include CUBE_FRAG_INC |
| 2610 | #else |
| 2611 | #include "cube.frag.inc" |
| 2612 | #endif |
| 2613 | }; |
| 2614 | |
| 2615 | frag_shader_module = prepare_shader_module(fragShaderCode, sizeof(fragShaderCode)); |
| 2616 |
nothing calls this directly
no outgoing calls
no test coverage detected