| 105 | } |
| 106 | |
| 107 | S32 xShadowReceiveShadowSetup(xEnt* ent) |
| 108 | { |
| 109 | if |
| 110 | ( |
| 111 | (ent->model != NULL) && |
| 112 | (xEntIsVisible(ent)) && |
| 113 | (ent->baseFlags & 0x10) && |
| 114 | (!iModelCull(ent->model->Data, ent->model->Mat)) |
| 115 | ) |
| 116 | { |
| 117 | return 1; |
| 118 | } |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | void xShadow_ListAdd(xEnt* ent) |
| 123 | { |
nothing calls this directly
no test coverage detected