| 2388 | } |
| 2389 | |
| 2390 | bool Compiler::CombinedImageSamplerHandler::begin_function_scope(const uint32_t *args, uint32_t length) |
| 2391 | { |
| 2392 | if (length < 3) |
| 2393 | return false; |
| 2394 | |
| 2395 | auto &callee = compiler.get<SPIRFunction>(args[2]); |
| 2396 | args += 3; |
| 2397 | length -= 3; |
| 2398 | push_remap_parameters(callee, args, length); |
| 2399 | functions.push(&callee); |
| 2400 | return true; |
| 2401 | } |
| 2402 | |
| 2403 | bool Compiler::CombinedImageSamplerHandler::end_function_scope(const uint32_t *args, uint32_t length) |
| 2404 | { |
no test coverage detected