analyzer functions */
| 308 | |
| 309 | /* analyzer functions */ |
| 310 | void onUndefinedBehavior(struct spvm_state* state, spvm_word ub) |
| 311 | { |
| 312 | ed::DebugInformation* dbgr = (ed::DebugInformation*)state->owner->user_data; |
| 313 | dbgr->OnUndefinedBehavior(state, ub); |
| 314 | } |
| 315 | |
| 316 | /* helper functions */ |
| 317 | bool isPointInTriangle(glm::vec2 p, glm::vec2 p0, glm::vec2 p1, glm::vec2 p2) |
nothing calls this directly
no test coverage detected