| 1824 | } |
| 1825 | |
| 1826 | void GLSLCompiler::m_buildFuncArgPtrs() |
| 1827 | { |
| 1828 | m_builtInFuncsPtrs.clear(); |
| 1829 | m_builtInFuncsPtrs["modf"].push_back(1); // second argument is out |
| 1830 | m_builtInFuncsPtrs["frexp"].push_back(1); // second argument is out |
| 1831 | m_builtInFuncsPtrs["uaddCarry"].push_back(2); // third argument is out |
| 1832 | m_builtInFuncsPtrs["umulExtended"].push_back(2); // third argument is out |
| 1833 | m_builtInFuncsPtrs["umulExtended"].push_back(3); // fourth argument is out |
| 1834 | m_builtInFuncsPtrs["imulExtended"].push_back(2); // third argument is out |
| 1835 | m_builtInFuncsPtrs["imulExtended"].push_back(3); // fourth argument is out |
| 1836 | m_builtInFuncsPtrs["usubBorrow"].push_back(2); // third argument is out |
| 1837 | } |
| 1838 | } |
nothing calls this directly
no outgoing calls
no test coverage detected