pops the old context
| 288 | |
| 289 | // pops the old context |
| 290 | static void newstyle_DoneInstance() { |
| 291 | instance_depth--; |
| 292 | |
| 293 | ASSERT(instance_depth >= 0); |
| 294 | |
| 295 | View_position = instance_stack[instance_depth].p; |
| 296 | View_matrix = instance_stack[instance_depth].m; |
| 297 | |
| 298 | *fvi_query_ptr->p0 = instance_stack[instance_depth].p0; |
| 299 | *fvi_query_ptr->p1 = instance_stack[instance_depth].p1; |
| 300 | if (fvi_do_orient) { |
| 301 | fvi_move_fvec = instance_stack[instance_depth].fvec; |
| 302 | fvi_move_uvec = instance_stack[instance_depth].uvec; |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | void CollideSubmodel(poly_model *pm, bsp_info *sm, uint32_t f_render_sub) { |
| 307 | // Don't collide with door housings (That is the 'room' portion of the door) |
no outgoing calls
no test coverage detected